11/19/15

Studying on Microsoft exams? Here are some resources that you can use

Studying on Microsoft exams? There are many resources on the internet that can help you. You can of course refer to the Microsoft Virtual Academy (https://mva.microsoft.com), but individuals also publish the resources that can be used for your preparation.

Some examples below:

(Microsoft) 70-480 - Programming in HTML5 with JavaScript and CSS3:

http://www.dominikgorecki.com/wp-content/uploads/2013/02/70-480-Notes.pdf
http://spmatt.wordpress.com/2013/09/25/how-i-passed-70-480
http://www.bloggedbychris.com/2012/09/19/microsoft-exam-70-480-study-guide

(Microsoft) 70-486 - Developing ASP.NET MVC Web Applications:

http://www.bloggedbychris.com/2012/11/06/microsoft-exam-70-486-study-guide

I'll be collecting more links in the Learning resources section.

Today's question on HTML

What will happen when the user clicks the RESET button inside the form "two" element?
Consider the following HTML5-code.
<body>
   <form id="one">
      <input name="firstname" type="text" />
      <input name="lastname"  type="text" />
   </form>
   <form id="two">
      <input name="address"   type="text" />
      <input name="city"      type="text" />
      <input name="RESET" type="reset" form="one" />
   </form>    
</body>
    
What will happen when the user clicks the RESET button inside the form "two" element?
Please select exactly one correct alternative.

Answer

Please see the answer above.


More questions on HTML?

http://hansrontheweb.blogspot.nl/p/html-selftest.html

11/15/15

Today's question on CSS

Which of the following alternatives are true?
Please select none ore more correct alternatives.

Answer

See the correct answers above.


More questions on CSS?

http://hansrontheweb.blogspot.nl/p/css-selftest.html

11/13/15

Today's question on JavaScript

What is the difference between setTimeout and setInterval?
Please select exactly one correct alternative.

Answer

Both functions execute a given function in a given time. But setTimeout only executes this function once, while setInterval schedules a repeating execution.


More questions on JavaScript?

http://hansrontheweb.blogspot.nl/p/javascript-selftest.html

A list of learning resources to explore

There are many learning resources to be found on the internet. I've assembled a list in my blog that I'll be extending on a regular basis. 

Some of the current topics: html, css, javascript, jquery, angularjs, bootstrap, xml and related, asp/asp.net, sql, ...

Enjoy!

http://hansrontheweb.blogspot.nl/p/learning-resources.html

11/12/15

Today's question on CSS

Will the "My title" header be printed in italics?
Suppose you have the following HTML web page implemented:
<!DOCTYPE html>
<html>
   <head>
      <style>
         h1.makemered {
            color:rgb(255,0,0);
            font-style: italic;
         }
      </style>
      <link rel="stylesheet" type="text/css" href="style.css">
   </head>
   <body>
      <h1 class="makemered" style="color:rgb(0,0,255)">My title</h1>
   </body>
</html>
   
And you have the following external CSS stylesheet (style.css) implemented:
h1.makemered {
   color:rgb(0,255,0);
}
   
Will the "My title" header be printed in italics?
Please select exactly one correct alternative.

Answer

The priority order is, generally speaking, from low to high:
  1. External style sheet
  2. Internal style sheet (in the head section)
  3. Inline style (inside an HTML element)
Only the color will be overridden by the external style sheet, so the italics style will still be used. The header will be printed green and in italics.


More questions on CSS?

http://hansrontheweb.blogspot.nl/p/css-selftest.html

Selftests in the making!

In this blog I'll regularly add questions to self tests on topics that I'm currently working with. Enjoy & happy coding!