All Projects → elharony → Google Mobile Web Specialist Certification Guide

elharony / Google Mobile Web Specialist Certification Guide

Licence: mit
If you are looking for becoming a Mobile Web Specialist by Google, this guide will be your best friend in your journey

Projects that are alternatives of or similar to Google Mobile Web Specialist Certification Guide

Google It Automation With Python
Repository to keep track of Google IT Automation with Python provided by Coursera
Stars: ✭ 86 (-53.01%)
Mutual labels:  google, certificate
Flutter Ui Nice
More than 130+ pages in this beautiful app and more than 45 developers has contributed to it.
Stars: ✭ 3,092 (+1589.62%)
Mutual labels:  google, resources
Attendance Using Face
Face-recognition using Siamese network
Stars: ✭ 174 (-4.92%)
Mutual labels:  google
Licenseclassifier
A License Classifier
Stars: ✭ 180 (-1.64%)
Mutual labels:  google
Youtubeshop
Youtube autolike and autosubs script
Stars: ✭ 177 (-3.28%)
Mutual labels:  google
Marmot
Marmot workflow execution engine
Stars: ✭ 174 (-4.92%)
Mutual labels:  google
Googlecloudarchitectprofessional
Resources to prepare for Google Certified Cloud Architect Professional Exam - 2017
Stars: ✭ 177 (-3.28%)
Mutual labels:  resources
Women In Technology
A collection of resources for women in tech, consisting of - courses, learning guides, amazing sites and repos, blogs, programs and events. scholarships, etc.
Stars: ✭ 170 (-7.1%)
Mutual labels:  resources
Awesome R Learning Resources
A curated collection of free resources to help deepen your understanding of the R programming language. Updated regularly. Contributions encouraged via pull request (see contributing.md).
Stars: ✭ 181 (-1.09%)
Mutual labels:  resources
You Dont Need Gui
Stop relying on GUI; CLI **ROCKS**
Stars: ✭ 4,766 (+2504.37%)
Mutual labels:  resources
React Native Google Place Picker
React Native Wrapper of Google Place Picker for iOS + Android.
Stars: ✭ 180 (-1.64%)
Mutual labels:  google
Awesome Deep Learning Music
List of articles related to deep learning applied to music
Stars: ✭ 2,195 (+1099.45%)
Mutual labels:  resources
Cs Books
A list of textbooks for a Computer Science curriculum.
Stars: ✭ 175 (-4.37%)
Mutual labels:  resources
Android basics nanodegree by google My 10 projects
All of my completed Android Basics Nanodegree by Google projects.
Stars: ✭ 178 (-2.73%)
Mutual labels:  google
Viewimage
Google removed the "View Image" button. This is a bookmarklet that downloads the full-size photo.
Stars: ✭ 174 (-4.92%)
Mutual labels:  google
React Native Dialogflow
A React-Native Bridge for the Google Dialogflow (API.AI) SDK
Stars: ✭ 182 (-0.55%)
Mutual labels:  google
Ounotes
An Application built for students to access Notes , Question Papers , Syllabus and Resources for all Subjects of O.U (Osmania University) 📘👨‍🎓
Stars: ✭ 173 (-5.46%)
Mutual labels:  resources
Awesome Ocaml
A curated collection of awesome OCaml tools, frameworks, libraries and articles.
Stars: ✭ 2,177 (+1089.62%)
Mutual labels:  resources
Googlecontactseventsnotifier
Receive automatic email notifications before your Google Contacts birthday and other events!
Stars: ✭ 177 (-3.28%)
Mutual labels:  google
Front End Performance Checklist
🎮 더 빠르게 작동하는 프론트엔드 성능 체크리스트
Stars: ✭ 183 (+0%)
Mutual labels:  resources

Google Mobile Web Specialist Certification Guide

If you are looking for becoming a Mobile Web Specialist by Google - like me - this guide will be our best friend in this journey!

Agenda:

  1. Basic Website Layout and Styling
  2. Front End Networking
  3. Accessibility
  4. Progressive Web Apps
  5. Performance Optimization and Caching
  6. Testing and Debugging
  7. ES2015 Concepts and Syntax
  8. Mobile Web Forms

Introduction and The exam content

Google offers - till now - 4 certifications, the most recent one of them is the "Mobile Web Specialist" certification and if you are curious about the other certifications, visit Google Developers Certification. This guide will cover the 8 parts of the exam, each part will be covered with many resources to learn & prepare for it. Let's dive into the exam content:

1) Basic Website Layout and Styling

Users expect responsive and visually engaging websites regardless of the device. A web application's layout and styling must respond to the current display, while continuing to provide intuitive functionality. You'll be asked to show you can use HTML, CSS, and JavaScript to build a web application’s responsive layout and style that includes:

  • DOM elements that are accessed and manipulated using only JavaScript without the overhead of libraries or frameworks (such as jQuery)
  • Appropriate document type declaration and viewport tags
  • A responsive grid-based layout using CSS
  • Media queries that provide fluid breakpoints across different screen sizes
  • Multimedia tags to display video or play audio
  • Responsive images that adjust for the dimensions and resolution of any mobile device
  • Touch and mouse events that contain large hit targets on the front end and work regardless of platform

Resources

2) Front End Networking

Because user engagement depends on reliable and effective network requests, you'll be asked to show you can use JavaScript to set up reliable front end networking protocols by:

  • Requesting data using fetch( )
  • Checking response status, then parsing the data into usable format
  • Rendering response data to a page
  • Configuring POST requests to a database with method and body parameters
  • Using correctly configured cross-origin resource sharing protocol (CORS) fetch requests, depending on the server’s response headers
  • Handling fetch( ) request errors with promise chaining
  • Diagnosing network issues using debugging and development tools

Resources

3) Accessibility

Web pages and applications should be accessible to all users, including those with visual, motor, hearing, and cognitive impairments. Using HTML, CSS, JavaScript, you'll be asked to show you can integrate accessibility best practices into your web pages and applications by:

  • Using a logical tab order for tabbed navigation
  • Using skip navigation links to bypass navbars and asides
  • Avoiding hidden content on the page that impedes tab navigation
  • Using heading tags that provide a logical page structure
  • Using text alternatives to visual content, such as alt, <label>, aria-label, and aria-labelledby
  • Applying color contrast to all elements and following accessibility best practices
  • Sending timely alerts for urgent messages using aria-live
  • Using semantic markup to keep content and presentation separate when appropriate

Resources

4) Progressive Web Apps

Users expect native applications to be available offline and provide a feature-rich experience that is launchable from their home page. You'll be asked to show that you can use service workers, and HTML and JavaScript to build out progressive web application features similar to native applications by:

  • Creating a web app that is available offline, and that caches elements by routing requests through a service worker
  • Storing the default display orientation, theme color, display icon (add to home screen), and splash screen in the web application manifest (or using meta tags)
  • Separating critical application functionality and UI into an application shell that can be loaded independently from the content

Resources

5) Performance Optimization and Caching

Mobile users demand websites that load nearly instantly, despite poor or absent connectivity. Because many users also face expensive data caps, you must minimize their application's data footprint to reduce page load time as much as possible. You'll be asked to show you can carry out performance audits on applications to reduce page load times and maintain responsive user experiences by:

  • Preventing main thread blocking with a dedicated web worker
  • Providing an optimized critical rendering path using:
    • Compressed or minified JavaScript, HTML and CSS files to reduce render blocking
    • Inline CSS for essential styles on a specific page, with asynchronous loading for additional styles as necessary
    • Inline JavaScript files for initial rendering only where necessary (or otherwise eliminated, deferred, or marked as async)
    • Ordered loading of remaining critical resources and early download of all critical assets to shorten the critical path length
    • Reduced DOM depth to minimize browser layout/reflow
    • Your browser's developer tools to diagnose performance issues on mobile devices
  • Prefetching files that load when resources are available, reducing the time to meaningful interaction
  • Providing client storage that is appropriate to a web application’s data persistence needs, including:
    • Session state management
    • Asset caching based on their impact on load time and offline functionality
    • Using IndexedDB to store dynamic content in offline mode

Resources

6) Testing and Debugging

Developers typically work in highly iterative deployment environments, relying on extensive testing and debugging to maintain functionality and code integrity. You'll be asked to show that you can verify expected behaviors and diagnose common web application bugs by:

  • Writing unit tests that first verify a function’s intended behavior, and then iteratively modifying its code until it passes those tests
  • Setting breakpoints within a complicated function to determine exactly where it deviates from expected behavior
  • Using console logs to output relevant debugging information
  • Reproducing and fixing bugs based on user reported issues

Resources

7) ES2015 Concepts and Syntax

Web developers must stay current with the latest JavaScript features that promote simpler and more readable code. With polyfills enabling code written in ES2015 JavaScript to be used in unsupported browsers, there is a strong incentive for developers to begin using the new features and syntax. You'll be asked to show that you understand and can write ES2015 JavaScript code using:

  • JavaScript promises with ES2015 syntax that create asynchronous functions and incorporate graceful error handling
  • Variables that can be used with block scope, function scope, and made immutable depending on context using let, var, and const
  • String literals that include string interpolation and multi-line strings
  • Arrow functions that create anonymous functions and use an unbounded this
  • Default function parameters that initialize default values for a function when no argument or undefined is provided
  • for...of loops that can iterate over any iterable object while running a custom function on each
  • Maps that allow for arbitrary key and value pairs that are iterable and include non-string keys
  • Sets that contain only unique, iterable elements where an array would degrade performance

Resources

8) Mobile Web Forms

Filling out online forms, especially on mobile devices, can be difficult. To improve the user experience you'll be asked to show that you can use basic HTML5, JavaScript, and the HTML5 Constraint Validation API, to design efficient and secure HTML web forms with:

  • Appropriate label tags associated with inputs
  • Inputs with appropriate type, name and autocomplete attributes
  • Inputs with large touch targets for mobile forms
  • Suggestions for user input using the datalist element
  • Front-end validation of inputs (e.g., pattern, maxlength, required) and DOM elements, including:
    • Checking validation errors in real-time with pseudo-classes on inputs
    • Form validation prior to submission (Constraint Validation API)

Resources

FAQs

If you have questions, you will find the answers here!

Why did you create this guide?

I didn't create this guide from scratch, I copied the Mobile Web Specialist Study Guide content and resources because I will start my journey to get The Mobile Web Specialist certification today, and I want to add more useful - Free or Paid - resources to this guide to help others and save their time!

Google wrote a very useful note - it is one of the reasons to write this guide - in their Mobile Web Specialist Study Guide:

Note that these resources form only a small portion of what is available on the web, and we encourage you to do additional research

Is it a FREE certification?

Unfortunately, it isn't. The exam costs $99 USD.

The exam fees has changed to $149 USD. Local pricing may vary based on your country of origin.

I have more questions about the certification that aren't listed above!

As I mentioned above; this guide is only about sharing my journey and adding new resources to help others who want to apply for the exam. If you want to know more about the exam/certification, you will find everything in Mobile Web Specialist page.

Wrap Up

If you have any ideas, please discuss them in the issues. Also, I will continue to improve this, so you might want to watch/star this repository to revisit. Feel free to reach me out at [email protected] for any feedbacks. Wish me luck!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].