User Tools

Site Tools


microsoft_exams

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
microsoft_exams [2013/09/29 21:19] stephenmicrosoft_exams [2017/01/01 20:05] (current) – external edit 127.0.0.1
Line 1: Line 1:
 ====== Microsoft Exams ====== ====== Microsoft Exams ======
  
-^ Exam ^^^ Deadline ^ Target ^ +^ Exam ^^^ Study Guide ^ Deadline ^ Target ^ Completed ^ Score 
-| [[http://www.microsoft.com/learning/en-us/exam-70-480.aspx|70-480]] | DEV | Programming in HTML5 with JavaScript and CSS | 31 March 2014 | 4 October 2013 | +| [[http://www.microsoft.com/learning/en-us/exam-70-480.aspx|70-480]] | DEV | <del>Programming in HTML5 with JavaScript and CSS</del>| 31 March 2014 | 25 November 2013 | 25 November 2013 | 720 
-| [[http://www.microsoft.com/learning/en-us/exam-70-486.aspx|70-486]] | DEV | Developing ASP.NET MVC 4 Web Applications | 31 March 2014 | 4 November 2013 +| [[http://www.microsoft.com/learning/en-us/exam-70-486.aspx|70-486]] | DEV | <del>Developing ASP.NET MVC 4 Web Applications</del> | [[http://www.bloggedbychris.com/2012/11/06/microsoft-exam-70-486-study-guide/|Study Guide]] | 31 March 2014 | 15 January 2014 | 23 January 2014 | 981 
-| [[http://www.microsoft.com/learning/en-us/exam-70-487.aspx|70-487]] | DEV | Developing Windows Azure and Web Services | 31 March 2014 | 4 December 2013 +| [[http://www.microsoft.com/learning/en-us/exam-70-487.aspx|70-487]] | DEV | <del>Developing Windows Azure and Web Services</del> | [[http://www.bloggedbychris.com/2013/01/09/microsoft-exam-70-487-study-guide/|Study Guide]] | 31 March 2014 | 28 February 2014 | 10 February 2014 | 887 
-| [[http://www.microsoft.com/learning/en-us/exam-70-488.aspx|70-488]] | DEV | Developing Microsoft SharePoint 2013 Core Solutions | 31 May 2014 | 4 February 2014 | +| [[http://www.microsoft.com/learning/en-us/exam.aspx?ID=70-488|70-488]] | DEV | <del>Developing Microsoft SharePoint 2013 Core Solutions</del>| 31 May 2014 | 30 April 2014 | 14 April 2014 | 841 
-| [[http://www.microsoft.com/learning/en-us/exam-70-489.aspx|70-489]] | DEV | Developing Microsoft SharePoint Server 2013 Advanced Solutions | 31 May 2014 | 4 April 2014 |+| [[http://www.microsoft.com/learning/en-us/exam-70-489.aspx|70-489]] | DEV | <del>Developing Microsoft SharePoint Server 2013 Advanced Solutions</del>| 31 May 2014 | 31 May 2014 | 12 May 2014 | 768 | 
 + 
 +**Remember:** The order of the answers in the exam are randomised.
  
 Remuneration $500 per exam + $1500 first first set + $1000 for second set. Total $83k -> $88k. Remuneration $500 per exam + $1500 first first set + $1000 for second set. Total $83k -> $88k.
  
-[[http://www.examcollection.com/|examcollection.com]]+[[http://www.examcollection.com/|examcollection.com]] (ricksantorum38@gmail.com thisi2smypaSsword) 
 + 
 +[[http://www.microsoft.com/mcp|Microsoft Certified Professional]]
  
 ===== 70-480 ===== ===== 70-480 =====
Line 17: Line 21:
  
   * Create the document structure   * 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+    * 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
   * Write code that interacts with UI controls   * Write code that interacts with UI controls
-    * Programmatically add and modify HTML elementsimplement media controlsimplement HTML5 canvas and SVG graphics+    * Programmatically add and modify HTML elements 
 +    * implement media controls 
 +    * implement HTML5 canvas and SVG graphics
   * Apply styling to HTML elements programmatically   * Apply styling to HTML elements programmatically
-    * Change the location of an elementapply a transformshow and hide elements+    * Change the location of an element 
 +    * apply a transform 
 +    * show and hide elements
   * Implement HTML5 APIs   * Implement HTML5 APIs
     * Implement storage APIs, AppCache API, and Geolocation API     * Implement storage APIs, AppCache API, and Geolocation API
   * Establish the scope of objects and variables   * Establish the scope of objects and variables
-    * Define the lifetime of variableskeep objects out of the global namespaceuse the “this” keyword to reference an object that fired an eventscope variables locally and globally+    * 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   * Create and implement objects and methods
-    * Implement native objectscreate custom objects and custom properties for native objects using prototypes and functionsinherit from an objectimplement native methods and create custom methods +    * 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 
 === Preparation resources === === Preparation resources ===
  
Line 38: Line 53:
  
   * Implement program flow   * Implement program flow
-    * Iterate across collections and array itemsmanage program decisions by using switch statements, if/then, and operatorsevaluate expressions+    * Iterate across collections and array items 
 +    * manage program decisions by using switch statements, if/then, and operators 
 +    * evaluate expressions
   * Raise and handle an event   * Raise and handle an event
-    * Handle common events exposed by DOM (OnBlur, OnFocus, OnClick)declare and handle bubbled eventshandle an event by using an anonymous function+    * 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   * Implement exception handling
-    * Set and respond to error codesthrow an exceptionrequest for null checksimplement try-catch-finally blocks+    * Set and respond to error codes 
 +    * throw an exception 
 +    * request for null checks 
 +    * implement try-catch-finally blocks
   * Implement a callback   * Implement a callback
-    * Receive messages from the HTML5 WebSocket APIuse jQuery to make an AJAX callwire up an eventimplement a callback by using anonymous functionshandle the “this” pointer+    * 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   * Create a web worker process
-    * Start and stop a web workerpass data to a web workerconfigure timeouts and intervals on the web workerregister an event listener for the web workerlimitations of a web worker+    * 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
   
 === Preparation resources === === Preparation resources ===
Line 57: Line 87:
  
   * Validate user input by using HTML5 elements   * Validate user input by using HTML5 elements
-    * Choose the appropriate controls based on requirementsimplement HTML input types and content attributes (for example, required) to collect user input+    * Choose the appropriate controls based on requirements 
 +    * implement HTML input types and content attributes (for example, required) to collect user input
   * Validate user input by using JavaScript   * Validate user input by using JavaScript
-    * Evaluate a regular expression to validate the input formatvalidate that you are getting the right kind of data type by using built-in functionsprevent code injection+    * 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   * Consume data
-    * Consume JSON and XML dataretrieve data by using web servicesload data or get data from other sources by using XMLHTTPRequest+    * 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   * Serialize, deserialize, and transmit data
-    * Binary datatext data (JSON, XML)implement the jQuery serialize methodForm.Submitparse datasend data by using XMLHTTPRequestsanitize input by using URI/form encoding+    * 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
   
 === Preparation resources === === Preparation resources ===
Line 74: Line 115:
  
   * Style HTML text properties   * Style HTML text properties
-    * Apply styles to text appearance (color, bold, italics)apply styles to text font (WOFF and @font-face, size)apply styles to text alignment, spacing, and indentationapply styles to text hyphenationapply styles for a text drop shadow+    * Apply styles to text appearance (color, bold, italics) 
 +    * apply styles to text font (WOFF and @font-face, size) 
 +    * apply styles to text alignment, spacing, and indentation 
 +    * apply styles to text hyphenation 
 +    * apply styles for a text drop shadow
   * Style HTML box properties   * Style HTML box properties
-    * 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)+    * 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)
   * Create a flexible content layout   * Create a flexible content layout
-    * Implement a layout using a flexible box modelimplement a layout using multi-columnimplement a layout using position floating and exclusionsimplement a layout using grid alignmentimplement a layout using regions, grouping, and nesting+    * 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   * Create an animated and adaptive UI
-    * Animate objects by applying CSS transitionsapply 3-D and 2-D transformationsadjust UI based on media queries (device adaptations for output formats, displays, and representations)hide or disable controls+    * 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   * Find elements by using CSS selectors and jQuery
-    * Choose the correct selector to reference an elementdefine element, style, and attribute selectorsfind elements by using pseudo-elements and pseudo-classes (for example, :before, :first-line, :first-letter, :target, :lang, :checked, :first-child)+    * 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)
   * Structure a CSS file by using CSS selectors   * Structure a CSS file by using CSS selectors
-    * Reference elements correctlyimplement inheritanceoverride inheritance by using !importantstyle an element based on pseudo-elements and pseudo-classes (for example, :before, :first-line, :first-letter, :target, :lang, :checked, :first-child) +    * 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) 
 === Preparation resources === === Preparation resources ===
  
Line 92: Line 151:
   * [[http://msdn.microsoft.com/library/ie/hh673536(v=vs.85).aspx|CSS]]   * [[http://msdn.microsoft.com/library/ie/hh673536(v=vs.85).aspx|CSS]]
  
 +===== Play Ground =====
 +
 +<html>
 +<style type="text/css">
 +#pg-1 {
 +  outline: dashed 1px red;
 +}
 +
 +</style>
 +<div id="pg-1">
 +Hello everyone!
 +</div>
 +</html>
  
microsoft_exams.1380489580.txt.gz · Last modified: 2017/01/01 19:50 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki