Introductory Course: Learning Wordpress Development

Wordpress is the most utilized blogging platform on the planet. But did you know that Wordpress also powers some of the largest online stores, publications, and communities online? Wordpress powers millions of sites, and for individuals wanting to work with Wordpress, there’s never a lack of potential projects. 

In this guide we’ll start by assuming you know you want to learn some web development. But don’t have much experience. Many Wordpress developers are self taught, and there are more resources online to help you get your initial chops. We’ve worked with Wordpress themes for many years and will step you through some of our favorite resources on the matter. 

In this guide we’ll take a look at the following specific topics: 

First things first, wordpress.com vs wordpress.org

If you’ve spent any time tinkering with your own web presence and trying to get a wordpress blog started, you’ve likely encountered the fact that there’s a difference between Wordpress.com and Wordpress.org. 

In case you haven’t, or would just like to learn more, we’ll outline the crucial differences between these two entities below. 

The key difference between Wordpress.com and Wordpress.org is who hosts your site. 

In the case of Wordpress.com, Wordpress.com installs an instance of Wordpress and provides hosting. In the case of Wordpress.org, you host your own site. While this may not seem like difference — after all, someone has to host the site, right? — what it does mean is that Wordpress.com has a great deal of control over the functionality you’re offered. 

Wordpress.com can be a great way to get a free site online that is somewhat customizable. But this service is typically meant for complete web development novices. Sites aren’t really that customizable at all. And a great deal of the functionality increasing features that Wordpress is known for aren’t available through Wordpress.com. 

In short, with Wordpress.com you can’t utilize plugins, you can’t edit backend code, and you can’t customize your themes (the visual look and feel of your site). While there are many use cases for Wordpress.com, third-party Wordpress development isn’t possible on this platform. 

For these reasons, just note that in our guide on Wordpress we’ll be talking about the open source software that users can augment the functionality and design of through themes and plugins: available at Wordpress.org. 

The Front-End Triad, HTML, CSS, JS

Front end web development is primarily concerned with the visual structure and interactivity of websites. While Wordpress development does involve some querying of the database (particularly for complex sites), a knowledge of HTML, CSS, and JS can be used to substantially alter your Wordpress site and perform many customizations you may require. 

While PHP (in the next section) has historically been what Wordpress themes and plugins are built on, Javascript is what Wordpress itself is built on, and recent developments including Gutenberg Blocks have made knowledge of Javascript more important than ever for advanced Wordpress development. 

So what are HTML, CSS, and JS?

HTML stands for hyper text mark up language. HTML actually isn’t a programming language, but rather a mark up language. A series of tags are placed around content to tell browsers how to interpret what is on the page. Additionally, page metadata including tags for what language the content is in, what search engines should think of your page, and more and included in HTML. 

CSS stands for cascading style sheets. CSS — and more modern preprocessing libraries like SCSS and SASS — are what provide the primary visual design for your site. The use of “selectors” that refer to html elements tell browsers how they should display elements. For example, CSS can specify all instances of paragraph HTML elements should be red. Or that all links should be purple. This is oversimplified for the sake of illustration, but CSS essentially works in this way. 

Why “cascading?” CSS provides the ability to override itself based on the specificity of your selector. For example, you could have a style for your whole site that acts as a default. But you may have an individual page where you want a different style. Specifying a more specific element on that one page with style instructions would take precedence over the default styles. 

JS stands for javascript. Javascript is an incredibly powerful language with many modern web development frameworks built on top of it. Netflix, Amazon, and Facebook’s public facing sites are largely built on JS frameworks. Javascript can run as a front end or backend language. Meaning it can affect the visual design of the site as well as make calls to the database and manipulate objects that are returned. In the context of Wordpress development, Javascript is important if you want to edit your editing experience, or if you want to provide interactivity on your site. By interactivity we mean events triggered when a user performs an action. 

Together, HTML, CSS, and JS are probably the most commonly covered topics through online resources regarding web development. There are scores of free and paid ways to learn, practice, and find examples of working code from these three languages. 

You can pursue a knowledge of HTML, CSS, and JS through many types of resources online. Depending on how much support you feel you will need, you can learn these items entirely on your own, through a book, through tutorials, through paid not-for-credit online courses, through bootcamps, or through degree programs.

  • Beginners: Treehouse, Lynda.com, CodeAcademy.com, W3Schools
  • Intermediate: Coursera, Udemy, Udacity

Just Enough PHP

To meaningfully work with Wordpress themes and plugins, you’ll need to grasp the fundamentals of one more programming language: PHP. With that said, you can customize Wordpress sites with tweaks to existing themes to some extent without any PHP knowledge. But to truly change the functionality of sites through theme and plugin development, you’ll need some knowledge of PHP. 

The good news is that if you’ve worked your way through some Javascript, the basics of PHP should be very familiar. PHP is another object-oriented programming language. And in the case of Wordpress it’s primarily used to communicate with your Wordpress site’s database to determine which content should be output where and which supporting files should be loaded.

PHP comes with a range of built in functions, which are coupled with Wordpress’ core functionality (also largely dealt with in PHP). Together these functions can be tailored to provide a vast majority of functionality one expects from a Wordpress theme or plugin. As you move forward with your Wordpress development skills, there’s likely no single location that will provide as many answers to built in Wordpress functions as the Wordpress codex

If you’re a true Wordpress beginner the range of functions available in the codex may be overwhelming. 

To get started, there are three clusters of functionality you should definitely acquaint yourself with. These include:

  1. The Wordpress “Loop”
  2. The Wordpress Template Hierarchy
  3. Post Types

Many beginners at Wordpress describe the Wordpress loop as “magical.” It’s the core mechanism for “looping” through different types of content and returning content data to be arranged in a systematic way. 

As you may have noticed, Wordpress has a range of built in page types with default behaviors that include returning a certain type of content. A category page may return all posts within a certain category. An author page may return all posts by a specific author. An archive page may return all posts from a specific time period, and so forth.

Within each of these page types, the loop by default returns a post object that represents all of the posts meant to be shown on this type of page. Individuals then have a range of built-in functions to pull information from the post object. 

Functions like “the_excerpt,” “the_permalink,” “the_title,” and “get_the_post_thumbnail” each return components of the given post from inside the loop (namely, an excerpt for the post, the link to the post, the title, and the image meant to be a thumbnail). This is just a small sampling of the built-in functions related to posts from within Wordpress. By returning values from the current post in the loop to specific positions on the page and applying html and css, one can dramatically change the look, feel, and organization of the default pages within Wordpress.

One can also call a custom query to pull in posts that meet certain parameters. Perhaps you want to display the three most recent posts from a given category, or by a given author. Or perhaps you want to show related posts in the sidebar. These actions can be accomplished by calling a second query to your Wordpress database. As you may be able to imagine, many page types are accomplished with a range of custom queries. 

The second element that allows individuals to start really making impactful edits to site functionality and design through theme design is that of the Wordpress template hierarchy

As I mentioned a moment ago, Wordpress comes with a set of page types that perform a default functionality built around serving up content of certain types. These pages are designed to catch any logical location that a site viewer could reach within a Wordpress site and provide details on what content should be shown on the screen. 

Wordpress defaults to the most specific template that applies to the location an individual is on a site. For example, if your theme provides both a products category and a general category template, then viewers looking at your products category will see the products category template. If you did not include any other specific category pages, then viewers would likely see the general category page for all other categories. 

The Wordpress template hierarchy provides a common language and organizational structure for Wordpress theme developers. Template hierarchy allows you to build on the code of another more easily, as well as revisit a theme you worked on in the past by providing information on where specific design and layout choices may have been implemented. 

While we’ve already referred you to the Wordpress codex, a beloved graphic that lives on the Wordpress template hierarchy page provides the definitive reference for many developers throughout their career. Check out the template hierarchy diagram in interactive format here.   

The third cluster of functionality a beginning developer should acquaint themselves with are Wordpress post types. As with all things Wordpress, the codex provides one of the definitive sources of knowledge on post types

In short, post types are types of content that live within Wordpress. Each post type has a different purpose in a given theme. Different post types have different fields of metadata and can be used in different ways. 

The five default post types within Wordpress include:

  • Posts – what you likely think of as a blog post or individual piece of content
  • Pages – a second post type that can provide a tiered url structure and (example: yoursite.com/parent_page/child_page) and are meant for less changeable or static pieces of content
  • Attachments – a type of post used to display media files and uploads. Includes metadata related to images or other multimedia content
  • Revisions – a type of post that is utilized to save a “working copy” of a post being edited every 60 seconds (by default). This post type is primarily involved with the editing process inside of the Wordpress dashboard
  • Navigational Menus – a type of post that details the structure, layout and location of menus that will be used throughout your theme

For many beginner Wordpress developers the usage of the word post can be confusing as it can refer to an individual post (one of five default post types), or it can be used generally to refer to the type of content being referenced. In the case of this second usage one may read examples such as “one can pass the post type desired into the wp_query.” 

It’s also of note that many Wordpress themes and plugins utilize custom post types. Custom post types can include products, universities, individual people, organizations, or any type of “entity” that can be represented by a series of distinct fields in a piece of content. 

While this is a lot to digest before actually playing around with your own themes, below are some of our favorite resources on the three clusters of functionality we covered in this section for your to revisit over time: 

Setting Up Your Local Environment

While there are cases in which you may deploy code immediately to a host, in most cases you’ll want to work on your site locally. This means that you’ll want to set up a locally run server capable of handling a Wordpress install. This also means that you can open up the themes or plugins folder of your Wordpress install and make changes to files that you can see the results of in real time. 

There are many ways to set up a local host, and many local hosting set ups that specialize in Wordpress in particular. The best options allow for you to easily pull the existing state of a live site from the web, make changes, and push that site back into production.

The specifics of how to choose a local hosting solution and how each is set up are beyond the scope of this guide. But we’ll list a few favorites below:

Making Your First Child Theme

If you already know your way around the Wordpress dashboard as a user, you may know there’s a view where individuals can edit the themes installed within a Wordpress instance. In a pinch, you can use the “edit themes” section of the Wordpress dashboard. But it’s not the best practice method of editing themes by any means. 

When beginning to make your own or edit existing Wordpress themes, you’re likely to hear the notion that you should be using “child themes” for development. What exactly does this mean? 

A child theme takes all of the existing code from an established parent theme and defaults to this code, except for where the child theme explicitly differs. The point of child themes is two-fold: 

  1. Child themes allow you to continue receiving updates to your parent theme (for security, new features, and so forth) without wiping away your changes to the site. 
  2. Child themes allow you to build off of the layout and design of parent themes giving you a framework from which to start

Simply setting up a child theme is a great starter project for getting acquainted with Wordpress development. 

There are many guides that step you through the steps to creating a child theme. In short the steps include:

  1. Creating a folder in your Wordpress install’s theme directory
  2. Inside of the folder adding a styles.css file with a range of commented fields at the top including the name of the child theme, the name of the parent theme, the author of the theme, and other optional fields
  3. Creating a functions.php file that enqueues parent theme styles and scripts
  4. Activating your child theme within your Wordpress dashboard
  5. Adding new files to your child theme to overwrite the layout, styles, and functionality of the parent theme

Many guides on this topic provide step-by-step instructions as well as code snippets you can simply paste into the proper files. Some of our favorite guides on creating child themes include:

Themes Vs. Plugins

Both plugins and themes can provide your Wordpress install with instructions on which files and content to load. Both plugins and themes can interact with your site’s database. And both plugins and themes can draw from Wordpress’ core functionality and functions to turn a Wordpress site into something “more” than it was before. 

With this in mind, should you focus on themes or plugins for Wordpress development? We’ve tackled the topic of how to set up a child theme. And there are similar guides that include boilerplate templates for creating the basic frameworks for plugins. 

To truly become an experienced Wordpress developer, you’ll likely need to know how to work with and create both themes and plugins. For the sake of this walkthrough, we will primarily talk about themes as they’re typically an easier entry point to Wordpress development. While plugins can in theory achieve pretty much anything a theme can, plugins typically also provide files and instructions altering the functionality of the Wordpress dashboard as well as the front end of the site. 

So when should one use a theme versus a plugin? 

Modern Wordpress conventions dictate that themes should be used to primarily change the design of a Wordpress site. This includes elements such as what the site looks like, which posts are loaded on which pages, and what sort of interactivity is possible. 

Plugins, on the other hand, are primarily used to alter or enhance the underlying functionality of a Wordpress site. 

One of the reasons for this divide is due to Wordpress sites’ ability to continue running as expected with no plugins. As you’re altering the functionality of a Wordpress site with the use of plugins, you may find yourself needing to deactivate plugins that interact with each other in unexpected ways. And you’ll undoubtedly “break” your site at some point. When this happens you can simply deactivate the plugin you’re working on, leaving much of the overall experience of the site intact (in many cases). 

Segmenting the functionality and design of the site into different locations also means that when one of these aspects break, it won’t necessarily break both. Plugins are primarily used to achieve specific functionality enhancements which in practice don’t entirely “make or break” a site. This segmentation of function and design allows you to incrementally improve a site and make your site more resilient. 

Next Steps

Once you’re up and running to some extent as a Wordpress developer, there are many ways to enhance your skills, gain expertise, and make a name for yourself. Many open source projects related to Wordpress are very supportive of beginners willing to lend a hand in helping to build a project. Many facebook, linkedin, and other networking groups are happy to answer questions about Wordpress development or the business of being in Wordpress development. 

As you progress, you’re also likely to encounter more modern build and automation tools. Many theme and plugin development frameworks require basic command line knowledge of automated task managers such as gulp or node. Build tools can — with basic command line knowledge — help to minify files, remove unnecessary files from your final distribution version of a theme, check for security flaws, and make sure your code is up to standards. 

While many guides can provide some basic overview of how to get started with Wordpress development, it isn’t until you really start jumping into projects that you know specific questions that you may need to seek out answers to. It’s at this point where you may find yourself becoming more involved on stack overflow or other technical forum sites, and learning (or teaching) a lot along the way.  

User experience and user interface (UX/UI) are often used interchangeably. While there are definite distinctions between the disciplines, they tend to work together, with UI choices affecting UX, and with UX research leading to changes in the UI. 

We’ll get into more specifics about this process, as well as precise definitions of both disciplines in the following sections. What we’ll assume until then, however, is that you have some notion of what UX/UI involves. Perhaps you’ve seen opportunities for roles in UX/UI. Perhaps you know that both skill sets can lead to in-demand and lucrative careers. Or perhaps you’ve worked in related fields like user research, product management, web development, or psychology. 

In this guide we’ll step you through some of our favorite resources and provide some foundational definitions and concepts related to UX and UI. Much like related fields in product management and software development, individuals can be self taught in UX/UI disciplines. And hopefully this guide will provide you with your bearings enough to create a portfolio of your own (or to just apply what you’re learning in a current role). 

Topics we’ll cover here include: 

What is UX/UI?

First things first, what exactly are we talking about here? 

UX and UI are two terms that are often used interchangeably, but instead refer to two related disciplines. Namely: 

  • User Experience (UX)
  • And User Interface (UI)

User experience is the science and collection of techniques used to measure and improve upon how a product “feels” to a user. User experience is primarily concerned with qualitative aspects such as what individuals like or dislike about a given product. Though these qualitative aspects bleed into quantitative metrics such as how long users use a product, whether users sign up for a service (or additional services), how much users buy, and how users interact with a product. 

User interface is essentially the design and implementation of the form of a product. Generally speaking, interfaces are what we use to gain information or use a product. User interfaces may be composed of forms, the structure of a site, interactivity or animations, general design choices, imagery, and anything else related to the implementation of how a user actually interacts with a product. 

There’s a popular saying around UI that essentially notes that interfaces are like jokes. If you have to tell someone how they work, then they don’t! A related notion is that the best interfaces are intuitive. Individuals shouldn’t have to spend much time learning how interfaces work, they should simply do what the user would expect them to do. 

UX and UI are implemented in all sorts of product designs, though the largest cluster of opportunity in these fields is primarily related to products that live online (websites, apps, portals, services online, etc.).

The Differences And Overlap Of UX/UI

UX and UI are often implemented by the same teams (or even the same individual). The process of UX work informs UI development, and UI development informs where UX work may start again. 

While there are many processes within UX and UI, a general schema for how UX and UI may relate could be summed up with the following steps (assuming you’re starting a new project): 

  • Content strategy
  • Information architecture
  • Scope of project
  • Initial sitemap
  • Initial user flow diagrams
  • Mood Boards
  • Wireframes
  • Lo-Fidelity Mock Ups
  • Testing 
  • Hi-Fidelity Mock Ups
  • Design Standards Documents

Differences between UX and UI can summed up in the processes and tools these roles use: 

  • User Experience: 
    • Tools: Analytics, Polling Tools, Diagrams, A/B Testing Frameworks, sitemap making tools
    • Processes: Site maps, Wireframes, Analysis of Analytics, Polling
  • User Interface:
    • Tools: photography, imagery, typography, color, mock up and design tools
    • Processes: Graphic design, mock ups, QA testing

Types of UX / UI Specializations

As with many fields, the level to which you may find yourself specializing in UX/UI is often a function of how large your UX/UI team is. In large corporations, UX/UI professionals may find themselves doing one subset of these tasks. On teams where there’s one UX/UI individual, you may find yourself doing all of the below specializations. With this said, if you’re trying to get into UX/UI it’s good to at least have a working knowledge of all of the following focus areas. 

Experience Strategists work on the UX side of the spectrum to try and determine both user and client goals and flesh out requirements and methods for tracking progress towards these goals in products. These individuals are closer to product management roles than project management roles (which may be more closely aligned to UI deliverables). 

User Researchers conduct qualitative and quantitative research on users to provide feedback for product changes. These roles may be more heavily reliant on analytics (quantitative data) or less formal research methods including usability surveys, focus groups, and interviews (qualitative data). User researchers are more heavily involved in the UX than the UI side of the equation, and often work in close contact with product teams. 

Information Architecture Specialists are somewhat like a cross between digital librarians and web designers. These individuals are tasked with ensuring information is laid out in a logical and easy to use manner. While IA specialists likely do less straight up design than interaction designers, they lay the groundwork or initial thought out for interaction (and other) designers to implement UX/UI proposals. 

Interaction Designers investigate and help hone the actual interface that lets users interact with the product. Interaction designers may investigate questions like “what does a user see before content is loaded on a page,” “what precisely happens when a user clicks a button,” “how does a user navigate through a site or app.” Interaction designers help to implement new layouts with an eye on quality UI principles. Depending on the team size they may or may not be the individual who actually implements the new design.

The four above roles are one particular way to break down UX and UI into “the four quadrant model.” There are, however, many other specialty roles within UX and UI. 

Additional specialist roles include: 

UX Writers who are tasked with implementing copy as part of the content that plays a major role in what a user’s experience is. Not all of a users experience is visual (and for some users, none of it is). That’s where UX writers come into play, ensuring quality UX principles are applied through written (or verbal) communication. These roles are especially prominent in products where individuals don’t interact with the product in a visual way. Smart speakers would be an example of this. 

Voice Designers are an even more specialized version of UX writers who apply UX principles to spoken text in auditory interfaces. Speech-to-text technologies are all around us, from portions of app and phone interfaces, to scores of internet-as-a-thing products. These designers help to ensure UX principles are implemented into the design of these types of products. 

UX Developers not only help with defining a UX strategy and research, but in implementing changes in the interface. While many UX/UI professionals have some coding skills, UX developers may find web or app development as a more central component of their job description. 

UX/UI Designers provide another “specialization” that may include any of the skills or specializations listed above. Depending on the size of the employer, individuals within UX or UI roles may be expected to perform design, research, and every stage of the UX/UI process. These individuals may go by UX/UI designers instead of just one specialization within these broader fields. 

 

Tools of the Trade

In recent years, the range of design, prototyping, and user research tools available have exploded. A field that was once dominated by Adobe products (similar to web design) now has many, many options for prototyping, wireframes, hi and lo-fidelity mockups, sitemaps, and user research. 

In this section we’ll look at some of the major categories of tools and point out some crowd favorites within each. 

Many of these tools are actually quite intuitive. But if you want to learn more advanced techniques or functionality, nearly all of the following tool makers have educational portals or learning centers. 

Prototyping and Wireframing Tools

  • Sketch is at the top of the list for many UX/UI teams and individuals. The ability to make prototype-wide changes to symbols, shapes, typography, and colors from one location. Add animations, and quickly switch from artboard to prototype. Available for an annual subscription and only on iOS. 
  • Adobe XD is Adobe’s main foray directly into UX/UI and prototyping. This wireframing and prototyping tool offers integrations with most other Adobe products, making it an easy choice for some designers. Comes with the ability to include animations as well as voice interactions. Available for monthly subscription. 
  • Axure RP offers slightly more wide-ranging functionality than either option listed above. Axure allows for visualizations based on conditional logic, inclusion of animations, dynamic content, and more. This product is available for purchase or via subscription.
  • Invision Studio provides similar features to all of the above prototyping tools, with the addition of a focus on mood boards as well as the ability to gain feedback directly within a prototype. Available as a subscription. 
  • Marvel is perhaps the best choice for interdisciplinary teams. With all of the same wireframing and prototyping features of the out tools in our list, Marvel also generates CSS, XML, and Swift for quick hand offs to design and development teams. Individuals can leave feedback from within prototypes and an app is available for editing or feedback on the go. Available as a subscription. 
  • Figma offers a free entry-level with optional upgrades for multi-member teams. This app allows for easy handling of all routine prototyping and wireframing tasks from within the browser. The ability to see prototypes with simple link sharing and the ability for any team member to leave feedback are two definite plusses of Figma. 

User Research

  • The UX Collective offers a pretty dang comprehensive list of user research tools. Depending on your needs, tools in this collection include surveying, the analysis of user behavior, recruitment of survey members, and more. 
  • User Interviews provides a whole chapter of an ebook about user recruitment, interviewing, and analysis. If you’re already applying some of your UX knowledge at work, many of these tools and services are great for enterprise environments. 

Sitemaps, Content Maps, and Site Diagramming

  • Visual Sitemaps is a great tool for taking an existing web property (particularly one with hundreds or thousands of pages) and generating a beautiful representative sitemap that can be exported. Sitemaps can be exported into Sketch or AI. Subscription-based service.
  • Slickplan is likely the frontrunner among all site organization tools, with suites of tools related to content mapping, site mapping, click path mapping, and diagrams that can help inform you into the wireframing and mock up processes. 

Initial Research

The start of the UX/UI lifecycle typically begins with research on a number of fronts. UX/UI professionals start by taking stock of the current project (if it’s already created in some form). 

Additionally, some investigation into current or future users is sought to inform some set of “user goals” and some investigation into those funding the project for a set of “client goals.” 

User goals and client goals can many times go hand in hand. For example, clients may want higher click through rate to a certain page. Simultaneously, users may want an easier or more clear path to valuable information. These two goals are not mutually exclusive and there’s likely a solution that appeases both parties involved. 

There are times, however, where user and client goals may appear to be in direct contradiction. For example, a client goal may be to reduce ongoing marketing costs for a web property. Meanwhile, a user goal may be to gain access to regularly updated free quality content.

There are a variety of useful exercises and techniques employed by UX/UI designers to discern how they should prioritize competing interests at the start of this project. These steps are important towards the beginning of the project as they can help to inform all future sections and lower project time and cost in the end. 

Below are a few resources on prioritizing features at the start of a UX/UI design process. 

And a few resources on creating user personas to inform choices early in the design process.

Sitemaps and Content/Functional Requirements

As we discussed in previous sections, the continuum of UX to UI roughly follows the trajectory of moving from non-visual and idea-driven to visual and functional. At this point in the design process, the prioritization of user and client priorities is often used to generate general organizational distinctions including sitemaps as well as distinguishing between content and functional needs for the site. 

There’s no one clear-cut way to make a great sitemap. Generally speaking, many designers use some of the same conventions, including squares for pages, diamonds for “choice points,” and lines and arrows to dictate the logical flow of information. But beyond that, sitemaps can incorporate a vast range of information. 

Some sitemaps are descriptive in nature, while others indicate major suggestions for how a site should transform. Some sitemaps take a very high-level view, while others provided somewhat detailed instructions on how a user will progress through pages. 

You may also work out many sitemaps and diagrams throughout the UX lifecycle, gaining specificity until you’ve moved on to a high fidelity mockup of pages. 

In the above video, Pierluigi Giglio walks new UX designers through many of the considerations you may want to make. Additionally, while you can essentially make a sitemap on any software that allows you to design squares and lines, choosing a program with additional sitemap-specific features can greatly enhance what you take from this part of the process. Some sitemapping tools (as are listed in the tools section above) provide the ability to interview users, testing capabilities, and the ability to export to other tools to “prettify” the sitemap as time goes on. 

While sitemaps occur in pretty much every UX process, and can be used to inform the overall structure of a project, there are a variety of common mapping types employed early-on in UX processes. These can include:

  • Empathy Maps
  • User Journeys
  • Experience Maps
  • Content Maps
  • And Service Blueprints

The two maps that likely appear the most are similar to content maps and service blueprints. These could also be phrased as documents that flesh out the content and functional requirements of the project. 

Rolling out content and functional requirements can further help you to prioritize what should be at the center of your site. While content is a central part of UX, functionality requirements are what need to be included for the project to even have a chance at being deemed successful. 

Lo and Hi-Fidelity Mockups

Some of the final stages of a UX/UI site or app build out center around the creation of lo and hi-fidelity mockups. Typically these documents proceed from research and work done in earlier sections of the design process. 

Use of user personas including values and what they’re looking for in the service can first be used to make a mood board. Mood boards don’t comment on the final design or layout, but provide an underlying “feel” or mood for the project. Ideally mood boards should be aligned with both user and client goals and can be a great starting point for the visual design process. 

Once documents like mood boards have been created, you may begin to start thinking about the actual layout of content elements on the screen. This is most commonly done through wireframes. Wireframes don’t make opinionated choices on font size, colors, and so forth, but instead provide a general layout that shows what content will be shown where within a site. 

Wireframes typically include elements including the following:

  • Navigation elements including main, secondary, footer, and sidebars
  • Banner locations and sizes
  • Individual blocks of copy as well as header and meta elements
  • Locations where images would be included
  • General layouts of buttons and call to actions

Just as there are lo and hi-fidelity mockups, so too can you proceed through wireframes in greater and greater detail. The key difference between a lo and hi-fidelity wireframe is that hi-fidelity wireframes tend to include interactivity to some degree and may be placed as a “live” prototype that individuals can click through. Lo-fidelity wireframes may be drawn on paper or software and are almost always static. 

Mockups take the general structure of wireframes and start integrating color, typography, imagery, and — eventually — interactivity. Finalized mockups can vary in specificity from a few “fully” designed dummy pages to a functioning prototype that includes dynamic content and actual baseline functionality. 

Typically speaking, the structure of the more finalized mockups will depend to some extent on the program you use. For UX developers or front end developers working on the UX side of a project, the finalized mockup may be a functionally simple page in HTML, CSS, and JS. Most of the case, however, mockups proceed until they are a semi-finalized design that allows a trial user to click through pages. 

 

The 10 Best Online Master’s in Health Care Informatics Degree Programs

If you’re a healthcare professional, you’re working at a turning point in health politics, economics and technology. Healthcare organizations are still transitioning their systems to the Internet, and they need competent professionals that can help them improve efficiency, maintain security, design databases and electronic systems, and so much more. With a Master’s in Health Informatics, you can be on the cutting edge of this vital evolution in health. Right now you can earn a Master’s in Health Informatics entirely online in between 18 months to 3 years depending on the program and class schedule you choose. We’ve given you a big head-start to finding an online Master’s in Health Informatics on the ranking below. Before we look at the programs on the list, let’s look at what’s in a Health Informatics Master’s program, and trends within the industry.

Regardless of your background in health, in the programs we’ve ranked you’ll gain advanced skills in areas like:

  • Database Security
  • Healthcare Project Management
  • Analysis
  • Research
  • Health Law and Ethics
  • Health Economics
  • Health Information Systems
  • And much more.

Let’s take a look at some industry trends:

  • The Bureau of Labor Statistics found employment for Health Information Technicians will increase 13% from 2016 to 2026, leading to 27,800 new jobs (which is faster than average occupations).
  • It also found Medical and Health Services Manager positions would grow 20% between 2016-26, which means 72,100 new jobs. Their 2017 median salary was $98,350 per year.
  • In a Health Informatics Master’s you’ll be qualified to work in one of the estimated 190,000 unfilled data analytics positions, and also to work in health management, a stellar combination.
  • Overall, the health industry is expected to make up 14 percent of the national economy by 2025.

Clearly you can see the value in earning one of these degrees. They’ll also help you build extremely useful skills in analysis, decision-making, leadership, project management and much more that will apply throughout your life and career. Throughout these programs you’ll learn how to improve health systems for an organization and the people it cares for. This is a fulfilling, lucrative career path, and the first step is finding the right health informatics program for you and applying. Whenever you find a school on the list that feels like a good fit, make sure to contact their support staff and request more information. You’ll often find compassionate professionals that are eager to help you in your application process. So what was our methodology on this list?

The following programs were ranked on the following:

  • Affordability
  • Graduation Rates
  • Retention Rates
  • Student-to-Faculty Ratios
  • Academic Quality
  • Flexibility
  • Special Features.

Let’s get to the ranking!

1) University of Denver

The University of Denver, or DU, is a four-year, independent private school. It’s the oldest university in the Rocky Mountains, founded in 1864. DU offers programs and degrees in law, business, music, social work, education, among many other disciplines. DU has grown parallel to the city of Denver, which boomed in the post-World War II migration to Colorado, and is now seeing an influx of transplants from across the country. It now serves over 11,400 students, and offers them the uncommonly low student-to-faculty ratio of 11:1. The University of Denver was ranked 87th among all public and private national universities in the U.S. News & World Report 2018 rankings. DU is also known for its University College, which is a school of professional and continuing studies that DU created in order to offer graduate certificates and master’s degrees online.

DU offers an online Master’s in Health Data Informatics and Analytics through its University College. It can be completed in as little as 18 months. Students will learn to use data analytics and informatics tools through connecting with patients, providers, payers, and other groups/individuals. They’ll learn to create, record and report data, and then use informatics to contextualize that data and create solutions to pressing issues within the health industry. The next start date for this program is January 7th. Sample core courses include Healthcare Project Management and Professionalism, Healthcare Database Applications, and Healthcare Data and Delivery by Perspective.

  • Homepage
  • Cost: 11th ($660 per credit hour)

2) University of South Carolina

The University of South Carolina is a public research university based in Columbia, South Carolina. It was founded in 1801, and is the flagship school in the University of South Carolina System. SC offers more than 350 programs of study, and coveys bachelor’s, master’s, and doctoral degrees through fourteen degree-granting colleges and schools. It’s known for its professional programs, which include business, engineering, law, medicine, pharmacy, and social work. USNR has ranked its Graduate Health program 23rd in the nation. Over 34,700 students attend SC, which has a 17:1 student-to-faculty ratio.

SC offers an online Master of Health Information Technology. It can be completed in 18-24 months, and requires 36 credit hours. Students will learn how healthcare has changed in the digital era, and with the policy changes from the Obama administration. Graduates will be prepared to help healthcare organizations become more efficient, and do a better job protecting their data. Students will build skills in analytics, project management, healthcare finance, administration, technology, and so much more. Sample courses include Management of Health Information Systems, Health Economics, Health Database Systems and Telecommunications for Health Information Systems. Students also do a 16-week internship as part of this program

  • Homepage
  • Cost: 4th ($554 per credit hour)

3) University of Cincinnati

The University of Cincinnati is a public research university in Cincinnati, Ohio. It was founded in 1819 as Cincinnati College, and is the first higher learning institution in the city. UC serves over 37,100 students with a 16:1 student-to-faculty ratio. It’s one of the 50 largest universities in the United States. In the 2011 edition of the U.S. News & World Report “Best Colleges” rankings, the University of Cincinnati was first ranked as a Tier One university, and it hit 133rd among National Universities in USNR’s 2018 rankings. Students at UC can access 100 bachelor’s degrees, over 300 degree-granting programs, and over 600 total programs of study, from certificates through doctoral degrees. It features nationally ranked programs in aerospace engineering, anthropology, architecture, classics, composition, conducting, cooperative education, criminal justice, design, environmental science, law, medicine, music, musical theater, neurology, nursing, opera, otolaryngology, paleontology, pediatrics, and pharmacy.

UC offers an online Master’s of Health Informatics. It’s aimed at meeting the growing demand for professionals with IT and healthcare training. The program requires 36 credit hours and can be completed on a part-time schedule in approximately 2 years. Its next start date is December 10th, and its next application deadline is November 18th. Students will build analytical and leadership skills in addition to delving deeply into current IT and healthcare methods, trends and competencies. Students will be taught by Business professors and health care industry experts to further broaden their education. Students can also choose to add a Health Information Security certificate as part of this program by taking 9 extra credit hours.

  • Homepage
  • Cost: 14th ($747 per credit hour)

4) Concordia University – Nebraska

Concordia Nebraska is a private university in Seward, Nebraska. It was founded in 1894. Concordia Nebraska is one of nine schools affiliated with the Lutheran Church–Missouri Synod and part of the Concordia system. It’s divided into three colleges: Arts and Sciences, Education, and Graduate Studies. It’s known for offering degree completion programs and graduate programs online, and also for its affordable programs. Concordia Nebraska offers over 50 undergraduate programs, and several Master’s degrees (a majority of which are offered online). Over 2,500 students attend Concordia Nebraska, which offers a 14:1 student-to-faculty ratio.

Concordia Nebraska offers a 100% online Master of Healthcare Administration (MHA) with a concentration in Health Information Technology. It can be taken in as little as two years, and is taught by healthcare leaders that use an ethical Christian framework in their educational approach. Students will learn to use information technology to improve healthcare systems’ clinical quality, safety/security, and cost-efficiency, all while improving the quality of patient care. The program requires 36 credit hours, and accepts up to 9 credit hours of applicable transfer credits. The program builds to a Practicum in Healthcare Administration. IT concentration courses include Healthcare Systems – Leadership Implications, Cyber-Security, and Health Informatics.

 

  • Cost: 2nd ($500 per credit hour)

5) Regis University

Regis University is a private Jesuit university in Denver, Colorado. It was established in 1877. Regis is one of the 28 member institutions of the Association of Jesuit Colleges and Universities. It’s divided into Regis College, The Rueckert-Hartman College for Health Professions, the College for Professional Studies, the College of Computer and Information Sciences, and the College of Business and Economics. U.S. News and World Report has ranked Regis 23rd among regional universities in the western United States Currently, Regis serves over 8,300 students with a student-to-faculty ratio of 13:1. The university offers 42 distinct online graduate degrees, including Master’s in Information Assurance, Business Administration, and a Doctor of Nursing Practice. It also offers 30 different online bachelor degrees, including Accounting, Computer Science, and Nursing.

Regis offers an online M.S. in Health Informatics. Classes are offered in 8 week sessions, and there are start dates in January, May, and August. The program was created for health care professionals that want to learn how to plan and implement systems planning, design workflow, manage security and electronic health information. Students will also build out their project management, leadership and ethical decision-making skills, all within healthcare environments and classes. Students can choose a track in Information Technology, Health Care Services, or Data Science. Required courses for all students include Workflow and Change Management in Adoption of Health IT, Managing a Secure Enterprise, and Healthcare Performance Evaluation. The program builds to a Capstone Applied Research Project.

  • Homepage
  • Cost: 9th ($625 per credit hour)

6) Saint Joseph’s University

Saint Joseph’s is a private, Catholic university in Philadelphia, Pennsylvania. It was founded in 1851 by the Society of Jesus. Nearly 8,100 students attend SJU, which has a 11:1 student-to-faculty ratio. SJU offers 60 undergraduate majors, 53 graduate programs, 28 study-abroad programs, 12 special-study options, a co-op program, a joint degree program with Thomas Jefferson University, and an Ed.D. in Educational Leadership. In total it has 17 centers and institutes. Currently, USNR has ranked SJU 12th among Regional Universities North, and 37th among Best Value Schools.

SJU offers an online Master’s in Health Administration that comes with a Health Informatics concentration. It can be completed in 2-3 years. The core curriculum gives students highly desired skills in research, law, and health industry practices that will make them indispensable to healthcare organizations. Coursework in the Health Informatics concentration focus on effective management, development, and evaluation of electronic medical records and other new health technologies. Students will learn how IT infrastructure, applications and more can be used to provide better care. They’ll also learn to manage data efficiently and securely. Sample courses include Computer-Based Patient Record, Health Care and the Internet, and Health Information Management Systems Applications.

  • Homepage
  • Cost: 22nd ($870 per credit hour)

7) University of Massachusetts – Lowell

The University of Massachusetts Lowell is a public research university in Lowell, Massachusetts. It serves over 18,300 students and offers a 17:1 student-to-faculty ratio, despite being the second largest public university in Massachusetts. UMass-Lowell is known for its degrees in engineering, criminal justice, healthcare, business, education, music, science and technology. U.S. News & World Report ranked UMass Lowell at 152 among top-tier National Universities in 2016. It’s one of only six schools to rank higher on that list each year between 2010-16. The school jumped 27-spots in the past five years, second-fastest in the nation. USNR also ranked it 78th among top public universities and second in the state. Forbes rated UMass Lowell the 10th best value among all universities and colleges nationwide in 2013, and fourth in value among non-military academies.

UMass Lowell offers an entirely online Master of Science in Health Informatics and Management with an Informatics Concentration. You’ll study health data management, storage, retrieval, exchange and analysis from a technical perspective. Students will learn how to integrate this study in with state and federal regulations, while maintaining data integrity and meeting meaningful use standards. Sample courses include Healthcare Project Management, Healthcare Database Design, Electronic Health Record Systems, and Healthcare Information System Planning. The program requires 36 credits. It culminates in a Capstone Project where students do independent research and development and write a substantial report.

  • Homepage
  • Cost: 6th ($575 per credit hour)

8) Liberty University

Liberty is a private, non-profit Christian doctoral research university in Lynchburg, Virginia, but that conveys degrees primarily online. The school was founded in 1971 by Jerry Falwell. It’s now attended by over 75,000 students worldwide, and offers a 19:1 student-to-faculty ratio. Liberty offers 290 bachelors, 315 masters, and 32 doctoral degrees through 17 distinct colleges. The vast majority of Liberty students take classes online. There are over 300 different degrees and certifications offered through Liberty’s online wing. It has been classified as a doctoral research university by the Carnegie Classification. According to LU, it’s the nation’s largest nonprofit online university, and has been offering distance learning since 1985.

Liberty offers an online Master of Science in Health Informatics. It requires 36 credit hours and can be completed in two years (on average). It’s designed for students that want to add an understanding of the latest technological advancements in the healthcare industry to their repertoire. Students may currently be in healthcare, or are seeking careers in a health or related occupation. It prioritizes being an advocate for those in need. Up to 50% of the credits for this program can be transferred in. Graduates go on to work as Data Administrators, Data Networking Analysts, Systems Integration Specialists and more.

  • Homepage
  • Cost: 5th ($565 per credit hour)

9) University of Scranton

Scranton is a private, non-profit, Catholic research university. It was founded in 1888, in Scranton, Pennsylvania. Scranton serves nearly 5,400 students, and offers a 12:1 student-to-faculty ratio. For 23 straight years Scranton has been ranked in the top 10 schools in U.S. News & World Report’s rankings of the Best Regional Universities North. In 2018, it placed 18th on USNR’s Best Value Schools list. Scranton offers undergraduate degrees (Bachelor of Arts and Bachelor of Science) in 65 majors. Students can also choose pre-professional concentrations, like pre-medical, pre-law, and pre-dental. The school also offers graduate degrees in 29 fields, including Accounting, Chemistry, Software Engineering, Theology, Health Informatics, and doctoral programs in Physical Therapy and Nursing Practice.

Scranton offers an online Master of Science in Health Informatics. Students will learn how to make useful, educated, data-driven healthcare decisions that focus on patient care. You’ll take classes that build your computer science, communication, business, information systems and leadership skills. The program was designed for health, business and/or technology professionals, but Scranton offers an on-boarding program for students without backgrounds in those fields to catch them up and prepare them for the program. Sample courses include Public Policy for Health Informatics, Database Principles and Applications, and Principles of Computer Science and Software Development, among many others.

  • Homepage
  • Cost: 15th ($757 per credit hour)

10) Slippery Rock University

Slippery (also known as The Rock or SRU) is a public, Master’s level university that also offers doctoral programs. It was founded in 1889, and is located in Slippery Rock, Pennsylvania. The Rock is a member of the Pennsylvania State System of Higher Education. Over 8,800 students attend SRU, which has a 21:1 student-to-faculty ratio. It’s known in part for its large campus (611 acres). In 2018 USNR ranked Slippery 78th among Northern Regional Universities.

SRU offers an online Master of Science in Health Informatics. It can be completed in just ten months, the quickest program on the ranking. In it, you’ll learn to establish and maintain information technology systems within a healthcare organization, and ensure those systems comply with organizational policies, regulations, goals, and the law. You’ll prepare to fill leadership roles and work as a bridge between corporate data management and technology departments in order store, retrieve, process and analyze data with cutting edge hardware and software systems.

  • Homepage
  • Cost: 3rd ($550 per credit hour)

Technology remains a leading economic driver. According to the U.S. Bureau of Labor Statistics, computer and technology occupations are expected to grow 13% over the next decade — nearly twice the national average — adding over 550,000 new jobs in programming, computer networks, database systems, web development, and software, among other fields. And with the continued explosion of digital technologies, especially cloud computing, big data, and information security, public and private organizations will be eagerly seeking qualified professionals to manage their tech needs, leading to a highly competitive, lucrative job market. As of 2018, the median annual wage for computer and information technology professionals is nearly $85k.

For anyone wanting to capitalize on this in-demand field, education should be a priority. Fortunately, the rise in online learning has helped democratize higher education, opening up affordable, flexible degrees to the public and building a highly knowledgeable, skilled workforce.

Below we’ve ranked the top 20 affordable bachelor’s degrees in Computer Science, also factoring in academic quality, flexibility, and customization options. While each degree follows a similar CS curriculum, every program is different. To find the best CS bachelor’s for your needs and budget, review the profiles and explore programs that may be a good fit.

1) Western Governors University

Founded in 1996, Western Governors University is a global leader in distance and online education, with nearly 100,000 students enrolled. In particular, Western Governors specializes in flexible, self-paced learning that leverages a competency-based model to offer students credit for previous life and work experience, accelerating completion time, increasing affordability, and reducing redundant coursework. TIME, Fast Company, NBC, and CNN have recognized WGU’s innovation in educational technology, and the Bill and Melinda Gates Foundation has awarded WGU $4.5 million in funding. Tuition is charged at a flat rate, and individual states offer financial aid opportunities.

Western Governors offers an affordable online BS in Computer Science that combines theoretical and technical skill development to prepare students to a wide variety of IT professions. Core coursework includes Web Development Foundations, Network and Security – Foundations, Scripting and Programming, Computer Architecture, Data Structures and Algorithms, and Introduction to Artificial Intelligence, among others. In addition to earning a bachelor’s, students will earn valuable certifications like CIW Site Development Associate, ITIL Foundation Certification, CompTIA Project+, and Oracle Database SQL (if you already have a certification, transfer it into the program to waive credits). The accelerated model allows students to complete the bachelor’s in as little as 6-36 months, and 97% of graduates recommend the track.

2) Central Methodist University

Established in 1854, Central Methodist University is a private institution located in Fayette, Missouri, with a total enrollment of about 1,100, and ranks 27th in the region according to US News. It also places in the top 40 for value. While founded as a liberal arts school, Central Methodist emphasizes practical, career-oriented instruction that prepares students for real-world challenges, and the university’s innovative, flexible online programs are designed to accomodate working professionals, adult learners, and non-traditional students. With a 12:1 student-to-faculty ratio, classes are kept intimate and small: over 65% of classes have fewer than 20 students. For those interested in affordability, 80% of full-time undergrads receive some form of financial aid.

Central Methodist offers an affordable online bachelor’s in Computer Science (BA or BS) with coursework in Database Systems and SQL, Networking, Computer Architecture and Operating Systems, Data Structures and Algorithms, and .NET, among others. From there, students have the opportunity to tailor the degree through programming courses in Java, Visual Basic, Web Programming, Mobile Application Development, and more. Online delivery is designed meeets scheduling demands, and select 8-week course blocks accelerate the degree. Upon completion of the degree, students will be prepared to: evaluate and review systems, diagnose problems, and establish solutions; be proficient in a range of computer languages; and excel in networking, application programming, computing systems, databases and software packages.

3) California State University – Monterey Bay

Founded in 1994, California State University – Monterey Bay has a total enrollment of about 7,600. US News ranks Cal State Monterey in the top 50 among all colleges and universities in the region and 11th among public schools. With a 27:1 student-to-faculty ratio, the university supports a highly collaborative, dynamic learning environment, combining the resources of a large research institution with the intimacy of a medium-sized liberal arts school. One in five classes have fewer than 20 students, and less than 7% have 50. For those interested, 61% of full-time undergrads receive some form of financial aid, and the average need met is 70%.

Cal State’s affordable online CS degree blends computer science theory and hands-on information technology practice, preaparing students for careers as software engineers, mobile app developers, and technology project manager. Core coursework includes Multimedia Design and Programming, Database System, Software Design, Computer Networks, Internet Programming, and Design and Analysis of Algorithms, among others. Courses deliver in accelerated 8-week blocks, allowing the degree to be completed in as little as two years, and multiple entry dates per year accommodate students’ schedules. All course content is approved by an industry advisory board to ensure relevant instruction, and a capstone portfolio requirements provides students with hands-on experience and the opportunity to build resumes.

4) University of Illinois at Springfield

Founded in 1969, the University of Illinois at Springfield joined the UI system in 1995. US News ranks it among the top 15 public schools in the region and highlights its overall value and affordability. A worldwide leader in distance education, the university been offering online degrees since 1999, for which it has received awards from the Sloan Consortium for Excellence in Institution-Wide Online Teaching and Learning, the Ralph E. Gomory Award for Quality Online Education, and the Society for New Communications Research for Excellence in Online Reputation Management. The 14:1 student-to-faculty ratio supports tailored instruction, and over half of all classes have fewer than 20 students. Sixty-five percent of full-time undergrads receive financial aid.

UI Springfield offers an online bachelor’s degree in Computer Science that provides students with a firm understanding of core CS skills and concepts. While the curriculum follows a traditional CS structure, all students complete an entry placement assessment and have the opportunity to tailor the degree to specific areas of professional interest with the help of an academic advisor. Sample courses include Computer Programming Concepts, RoboEthics, Software Packages, HTML/Web Development, Computer Organization, Data Structures and Algorithms, Operating Systems, and Routing Configuration in WAN Environment, among others. Springfield also emphasizes practical skill development through hands-on requirements.

5) Southern University and A&M College

Founded in 1880, Southern University and A&M College is a public institution with a total enrollment of about 6,400. US News ranks Southern among the best schools in the region, and places it in the top 40 for Historically Black Colleges and Universities. With a 16:1 student-to-faculty ratio, Southern promotes a tight-knit learning community, combining personalized instruction and collaborative, hands-on learning. Additional benefits include dual credits, academic and career counseling services, and support for military service members.

Southern’s online BS in Computer Science is an affordable, in-depth degree providing students with a solid foundation in the discipline. In particular, the program covers software engineering, computer organization, database systems, management information systems and operating systems, in addition to a wide range of computer applications. All courses are built for flexibility to fit scheduling demands — with resources like 24/7 access to course material, library resources, live chat, and group discussion boards — and the university’s generous transfer policy allows students to waive redundant coursework and accelerate completion time. CS graduates have gone on to careers in business, industry, government, and education.

6) Baker College

Founded in 1911, Baker College has thirteen campuses in Michigan in addition to an extensive online campus. With a variety of career-oriented undergraduate, graduate, and pre-professional programs, all Baker programs are built for maximum flexibility to accommodate a wide range of working professionals, adult learners, and non-traditional students, including 24/7 access to course material, customizable degree plans, and more. With a 16:1 student-to-faculty ratio, Baker fosters a dynamic, intimate learning environment, including individualized instruction and collaborative opportunities. Additional benefits include dual credits, credit for life experience, and academic and career counseling services.

Baker offers a BS in Computer Science that consists of 71 major credit hours, including coursework in Database Management and Design, Systems Development Methods, Visual BASIC, C++ Programming, Java Programming, Data Structures and Algorithms, Big Data Analytics, and more. From there, students tailor the degree through an 18-credit concentration in Computer Programming that features advanced studies in Computer Architecture, Python, and other areas. Via the Blackboard learning platform, students have 24/7 access to course material, group discussion boards, live chats, video conferencing, and tech support. To ensure relevant, hands-on work, Baker integrates several project requirements into the curriculum, and the degree is constantly being updated to align with industry standards, reflect changes in technology, and prepare students for in-demand CS skills.

7) Grantham University

Founded in 1951, Grantham University is now a 100% online university. With more than 40 degree programs and certificates, Grantham offers degrees in a wide range of disciplines, from business, to nursing and allied health, to computer science. The university’s diverse student body comes from all 50 states, as well as more than 100 countries. All courses are designed for maximum flexibility to accommodate the schedule demands of working professionals, adult learners, and non-traditional students, and the 21:1 student-to-faculty ratio supports a vibrant, collaborative learning atmosphere with personalized instruction from expert faculty. Additional benefits credit for life experience, academic and career counseling services, and support services for military. include It is accredited by the Distance Education Accrediting Commission.

Grantham’s online BS in Computer Science is an affordable program designed to give students a platform for a successful career in a variety of CS-related fields. Core coursework covers Programming in HTML, Programming in JavaScript, Computer Networks, Programming in C++, Data Structures, Software Engineering, Security Operations, Systems Analysis and Design, Security Trends and Legal Issues, and Discrete Math, among other subjects. Elective options allow students to customize the degree, and monthly start dates mean you can begin the degree according to scheduling demands. Grantham also offers a generous transfer policy: prior coursework and work experience can waive up to 75 credits, allowing students to complete the bachelor’s in as little as 38 months. Career options include Information Security Analyst, Software Developer, Computer and Information Systems Manager, Search Marketing Strategist, and Web Developer.

8) Calvary University

Founded in 1932, Calvary University is a private Christian institution with a total enrollment under 300 students. With one-year certificates, as well as bachelor’s, master’s, and associate degrees, Calvary offers small, intimate classes and a 7:1 student-to-faculty ratio, allowing students to engage personally with instructors and peers, and promoting a tight-knit educational community. Additional services include credit for life experiences, dual credits, academic and career counseling, and support for military members and veterans.

Calvary offers an online BS in Computer that combines flexibility, affordablity, and rigorous coursework to provide students with a solid foundation in CS. Major credits include Problem Solving and Programming, Discrete Structures, Database Design, Applied Probability, Artificial Intelligence, and Operating Systems, among other subjects. To allow for customization, 12 free credit electives are available, and students have the opportunity for hands-on experience to hone skills. All courses deliver online asynchronously to accommodate adult learners, working professionals, and non-traditional students, and the Canvas learning platform features 24/7 access to course material, group discussion, boards, and other dynamic tools with full tech support.

9) University of Wisconsin – Milwaukee

At a total enrollment of 28,000, The University of Wisconsin — Milwaukee is the second largest university in the state, offering 191 degree programs, including 94 bachelor’s, 64 master’s, and 33 doctorate degrees. Classified by the Carnegie Foundation as an R1 research institution,

    US News

ranks UW Milwaukee on at least four best-of rankings. The university has also developed an extensive online campus run in junction with the 13 other members of the University of Wisconsin System. With a 19:1 student-to-faculty ratio, over 40% of classes have fewer than 20 students and just one in ten have 50, fostering a vibrant, collaborative learning setting.

UW Milwaukee offers a unique BS in Applied Computing that focuses on future-focused learning, real-world application, and a combination of technology and business instruction. Core requirements cover Programming, Technical and Professional Communication, Systems Analysis and Design, Project Management Techniques, Computer Security, Web Development, IS Strategy and Management, Computer Security, and Legal and Ethical Responsibilities in IT. Two capstone projects add an experiential component to the program. Multiple entry dates and asynchronous delivery provide flexibility, and students on an accelerated full-time track can complete the bachelor’s in as little as two years (or take as long as necessary — there is no completion deadline).

10) Park University

Founded in 1875, Park University is a private institution with a total enrollment of about 11,200 students, located across 42 campus centers and Park’s growing online campus. In addition to ranking among the best schools in the Midwest according to US News, Park has been recognized for excellent military support services and overall affordability. Payscale highlights Park’s ROI. With a 15:1 student-to-faculty ratio, classes are kept small, intimate, and collaborative, allowing for tailored instruction and hand-on learning opportunities. Additional benefits include credit for life experiences and academic and career counseling services.

Park online BS in Information and Computer Science prepares students for a wide range of fields. Coursework includes Discrete Mathematics, Technology in a Global Society, Computer Networking, Managing Information Systems, Data Management Concepts, Basic Concepts of Statistics, and either Intro to Programming or Intro to Java. From there, students have the opportunity to tailor the degree to areas of professional interest through concentrations Computer Science, Data Management, Information Technology, Networking and Security (including a Cisco certification), or Software Development. To ensure the coursework remains relevant, the curriculum is routinely updated, and Internship options provide hands-on learning.

12) Charleston Southern University

Founded in 1964, Charleston Southern University is a private Christian institution with a total enrollment of 3,600, including about 1,000 online students. US News ranks Charleston Southern among the best colleges and universities in the region, and its online bachelor’s programs rank 21st in the country. With a healthy 15:1 student-to-faculty ratio, CSU is able to combine individualized instruction with a dynamic, collaborative learning experience that emphasizes theory as well as practice. Half of Charleston Southern’s classes have fewer than 20 students. Admissions are rolling, and nearly all full-time undergraduates receive financial aid.

Charleston Southern offers an online BS in Computer Science featuring 60 major credits: Data Structure Analysis, Computer Architecture, Advanced Operating Systems, Systems Analysis and Software Design, Applied Systems, and more. Built-in electives allow customization, and a senior project and portfolio review ensure practical, real-world emphases. To accommodate an array of students, including adult learners and working professionals, online courses are designed for maximum flexibility. Through the Blackboard learning platform, students have 24/7 access to course material as well as cutting-edge tools like web conferencing, group discussion boards, and live chat rooms. Additional resources and support services include a student success center, enrollment assistance, tech support, and more.

13) Rasmussen College — Minnesota

Founded in 1900, Rasmussen College offers associate’s degrees, applied associate’s, bachelor’s, certificates, and diplomas across 23 campuses and the school’s extensive online campus. Designed for adult learners, working professionals, and non-traditional students, all Rasmussen programs are built for maximum flexibility, with accelerated track options and tuition-saving opportunities via flex paths, scholarships, discounts, and a generous transfer policy. With a 16:1 student-to-faculty ratio, Rasmussen combines tailored instruction opportunities with a vibrant, collaborative educational community. Additional benefits include credit for life experiences, academic and career counseling, and military support services.

Rasmussen offers an online bachelor’s in Computer Science designed to prepare students for a career in software development, including earning certifications from Amazon Web Services, Microsoft, and Apple (the university reimburses students for up to three practice exams and exam application fees). Core course requirements include Enterprise Architecture, Operations Management, Distributed Application Architecture, Mobile Web Application Development, Business Project Management, Emerging Trends in Technology, Distributed Database Management, Web Analytics, and Advanced Cloud Computing Technologies, among others. From there, students can tailor the degree through specializations in Apple iOS App Development or Universal Windows App Development. Accelerated course delivery allows students to complete the degree in as little as 18 months. Graduates have gone on to work in a wide variety of fields, from tech to healthcare, finance, education, and government.

14) Davenport University

Davenport University, founded in 1866, is a private institution with a total enrollment of about 7,600. Ranked among the best colleges and universities in the Midwest by US News, Davenport places an emphasis on innovative, practical, and affordable education, including experienced faculty that integrate practical curriculum plans to develop professional skills. Davenport’s 12:1 student-to-faculty promotes personalized instruction, but also intimate and collaborative classes that allow for a tight-knit educational community. Three-quarters of all classes have fewer than 20 students, and none have more than 49. Additional benefits include credit for life experience, academic and career counseling, and services and programs for military members and veterans.

Davenport’s online Bs in Computer Science is an affordable, career-focused program that teach students to think logically, solve problems through collaboration, and effectively communicate. Major coursework covers Software Engineering, Data Structures and Algorithms, Computer Vision, Security Foundations, Finite Mathematics, Introduction to Game Design, and more, including a capstone that promotes skill development. Next, students can tailor the degree to areas of professional interest through selecting a specialization in either Artificial Intelligence, Computer Architecture and Algorithms, and Gaming and Simulation. Davenport also offers course credits for certifications you may already have earned, accelerated degree completion time. Related bachelor’s are available in Computer Information Systems, Network Management and Security, Cyber Defense, and Digital Forensics.

15) Oregon State University

Founded in 1868, Oregon State University has a total enrollment around 30,350. OSU is the only university in the state to hold both the Carnegie Foundation’s Tier 1 designation for research institutions and its Community Engagement classification, and US News, Washington Monthly, and Forbes rank it among the top public schools in the country. Most important, US News ranks OSU’s online bachelor’s programs 8th in the country, in addition to high marks for veteran support and overall value and affordability. The 18:1 student-to-faculty ratio supports a collaborative, vibrant learning community as well as tailored instruction from experienced faculty. Nearly a third of classes have fewer than 20 students, and over half of undergraduates receive some form of financial aid.

Oregon State’s School of Electrical Engineering and Computer Science offers a rigorous, accelerated bachelor’s in CS that consists of 60 major credits in areas like Programming, Data Structures, Analysis of Algorithms, Web Development, Software Engineering, Operating Systems, and more. A range of electives, from Mobile and Cloud Software Development to Parallel Programming, allow students to customize the curriculum, and a capstone project adds a hands-on component. Oregon State’s flexible academic plans give students control over scheduling, and there are four annual entry dates. The degree is designed to be completed in one year. (As a post-baccalaureate program, students take only the required courses in the computer science major.)

16) Colorado Technical University

Founded in 1965, Colorado Technical University has a total enrollment of about 20,000, including an increasingly large online presence. All CTU degrees emphasize career-driven, hands-on education that promotes professional development and skill-building. With a 28:1 student-to-faculty ratio, CTU supports a vibrant, dynamic learning environment that balances tailored instruction and peer-to-peer education. Further, CTU’s MUSE program allows students to choose a delivery model that fits their scheduling demands, including 100% online, hybrid, and blended options for maximum flexibility. For students interested in tuition assistance, 80% of undergrads receive some form of financial aid.

Colorado Tech offers an online BS in Computer Science that balances affordable tuition with in-depth, in-demand coursework. Major requirements include Computer Architecture, Programming (Python, SQL, Java, C++), Operating Systems, Software Engineering, Big Data Analytics, Computer Security, Networking, and more. Electives provide program customization, and students can pursue concentrations in Cybersecurity Engineering, Software Engineering, and Data Science. New programs start monthly, and transfer credits, corporate partnerships, Fast Track courses, and tuition reimbursement opportunities give students multiple ways to reduce costs. US News has ranked CTU’s online bachelor’s programs among the best in the country for four straight years.

17) Saint Leo University

Founded in 1889, Saint Leo University is Florida’s oldest Catholic institution of higher learning, with a total enrollment of about 6,000 students, over 60% of which take online classes. Ranked among the best 60 schools in the South by US News, Saint Leo also ranks 23rd for overall value and affordability, and places in the top 40 for veteran support. Leo’s 14:1 student-to-faculty ratio promotes tailored instruction, collaborative education, and a tight-knit learning community that combines the intimacy of a liberal arts school with the resources of large research institution.

Saint Leo offers a bachelor’s degree in Computer Science teaches students to solve real-life problems via CS design, development, support and management. Major requirements cover Computer Systems, Network Theory and Design, Database Concepts and Programming, Introduction to Information Security, Software Engineering, Algorithms and Data Structures, and more. Open electives enhance customization features, and a specialization in Information Assurance includes coursework in Disaster Recovery, Penetration Testing, and Information Security Management. To ensure the most up-to-date curriculum, Saint Leo follows recommendations from IEEE and ACM. Graduates of the program have gone on to careers at PricewaterhouseCoopers, Verizon, Bisk Technologies, and Jesse Ball duPont Fund.

18) National University

Founded in 1971, National University is the second-largest private, nonprofit school in California and a leader in online education, with over twenty years of experience and five online programs ranked among the best in the country by US News. NU is a Yellow Ribbon school founded by veterans and offers the post 9/11 GI Bill in addition to other top-ranked military support services. Students come from all 50 states and 65 countries, and with over 150,000 alumni around the world, National offers an excellent professional network.

National offers an affordable online BS in Computer Science that builds students technical and design skills, combining a strong academic foundation with real-world programming requirements. All courses deliver online for scheduling flexibility (enhanced by year-round enrollment and accelerated 4-week delivery blocks) and include studies in object-oriented programming, data structures and algorithms, operating systems, computer communication networks, software engineering, and computer architecture. Among the program objectives are learning to utilize computer science for problem-solving; understanding the impact of technology on individuals, organizations, and society; and effectively communication computer science issues, concepts, and solutions to team members. The degree is accredited by the ABET and WASC Senior College and University Commission.

19) LeTourneau University

Founded in 1946, LeTourneau University is a private Christian polytechnic school with a total enrollment of 2,700. In addition to being ranked among the 15 most affordable schools in the region, US News ranks LETU in the top 30 for at least three other lists. The 14:1 student-to-faculty ratio encourages a tight-knit learning community, individualized instruction, and manageable class sizes: nearly 70% of classes have fewer than 20 students. For those interested, 73% of full-time undergrads receive some form of tuition aid, and the average need met is 70%.

LeTourneau’s online bachelor’s in Computer Science balances rigorous, up-to-date academic instruction with practical hands-on learning. Topics covered include Database Management, Software Engineering, Project Management, and Information Security, and concentrations may be available in Game Development and Network Security, giving students the opportunity to tailor the degree in an area of career interest. Additional benefits include blended delivery options for students who prefer on-campus and online coursework, a free admissions process, and a variety of student support services. The program is accredited by the ABET and Southern Association of Colleges and Schools Commission on Colleges.

20) Regis University

Regis University, founded in 1877, is a private Catholic university in Denver with a total enrollment of 11,500 students. As a member of the Association of Jesuit Colleges and Universities, US News ranks Regis among the top 30 schools in the region, including recognition for veteran services and overall value. The 15:1 student-to-faculty ratio fosters an intimate educational setting with collaborative learning, personalized instruction, and small classes; sixty percent have fewer 20 students. For students prioritizing affordable tuition rates, nearly all full-time undergrads receive some form of tuition assistance.

Regis offers an online BS in Computer Science that prepares students to design and implement computer solutions to real-world social, political, environmental, scientific, medical, economic, and business challenges. Major course requirements include Operating Systems Design/Analysis, Computer Architecture, Software Engineering, Computation Theory, Ethical Leadership in Computer Science, Distributed Systems, and a capstone to build professional skills. From there, a variety of electives are available to tailor the curriculum, and students can choose to concentrate in Computer Information Systems, Information Technology, or general CS. On completion of the program, students will have developed valuable problem-solving, communication, and management skills in addition to CS skills. The degree is accredited by the ABET.

Modern business flows through digital networks. They allow instantaneous communication, the lifeblood of profit and organizational success. Someone has to build and run those networks, and protect them from a external threats, insecurities and logistical issues. Network or System administrators make sure computer networks are up to date, working well, and are protected from attacks or exploitation. Large organizations, corporations and governments need multiple computers, systems, and software to operate. A network administrator works to coordinate these and more. Many organizations are just realizing they need to invest in network administrators, and IT/Cybersecurity positions are flooding job markets, with limited numbers of qualified applicants. This leads to high wages, job security and exciting opportunities. According to the U.S. Bureau of Labor Statistics, the number of jobs available for network and computer systems administrators is expected to increase by 6 percent through 2026. They also found the median annual wage for network and computer systems administrators was $81,100 in 2017. If you’re looking to enter this field and begin working quickly, or build off a foundational education, a Network Administration Associate’s is a great place to start. It’s affordable, can be completed quickly, and often gets you ready for vital certifications within the field. And earning your Associate’s online is a great way to meet your work/life responsibilities, improve your career options and pay less time and money to earn your degree as well. An Associate’s in Network Administration will give you a great head start in the IT and computer science fields. This ranking was designed with the following methodology:

    • Affordability (1/3): the overall average cost of the program for out-of-state students, per credit hour; other fees not included.

Flexibility (1/3): the makeup of the program: fully online, hybrid, or class-based learning with online features.

  • Academic prestige (1/3): the strength and reputation of a given program according to other prominent rankings like US News & World Report.

 

1) Gulf Coast State College

Gulf Coast is a community college based in Panama City, Florida. It was founded in 1957 by the Florida Legislature, and is a member of the Florida College System. Students can earn associate’s and bachelor degrees at Gulf Coast. Nearly 5,500 students attend Gulf Coast, which has a 18:1 student-to-faculty ratio. It’s also the least expensive school on this list, AND 82% of its full-time students receive financial aid. Gulf Coast’s two options within Network Administration also increase its value, landing it at #1 on the ranking.

Gulf Coast offers two Associate programs in Network Systems Technology. The first is a Network Server Administration Option, which focuses on the functional skills needed to manage and maintain servers. Sample courses include Wireless Networking, Virtual Infrastructure: Installation and Configuration, and Advanced Router Tech. This program also covers some Cybersecurity courses that appear in the latter option. The second is a Network Security Option, focusing on protecting servers and data. This is a great way to begin an educational track into Information Assurance/Cybersecurity, a swiftly blooming field with lucrative opportunities and far too few qualified applicants. Sample courses include Encryption & Cryptography, Network Defense and Countermeasures, and Computer Forensics & Incident Response. Both options also contain course sequences from top certification organizations like CompTIA, CISCO and more.

  • Cost Per Credit Hour Rank: 1st-$133
  • Flexibility Enhancing Feature: 2 options
  • Homepage

2) American Business and Technology University

ABT University is a technical university that operates online. It was founded in Missouri in 2001 by Sam Atieh, a writer and online learning enthusiast. In 2002 it became the first school in the state to offer degree programs online. The school started offering retraining services, but now conveys certificates and undergraduate and graduate degree programs in Business and IT Technology. ABT is a small school, with just over 320 students and a 10:1 student-to-faculty ratio. 55% of its full-time students receive financial aid.

ANT offers an Associate of Applied Science (AAS) in two concentrations: Network Administration & Information Security and Computer Programming & Systems Design. It can be completed in 30 months and requires 60 semester hours. The total cost for the program is $17,440. Both concentrations introduce concepts like “hardware, business and productivity software, operating systems, networking, programming, and information security, and reinforces concepts and techniques through practical application.” Once again you have a choice of pursuing programming and systems themselves, or the upkeep of a network and maintaining its security. Students will be prepared to sit for three CompTIA certifications.

  • Rank: $290 5th
  • Feature: Two options
  • Homepage

3) Rasmussen College

Rasmussen is a private, for-profit business school that was founded in 1900. It has built 20 campuses across the country, and a robust online wing, which was founded in 2002. The school has graduated over 100,000 students. Rasmussen offers students more than 70 programs. Their programming is separated into seven schools: Health Sciences, Design, Business, Justice Studies, Education, Nursing, and Technology. Rasmussen is accredited by the Higher Learning Commission (HLC), the regional accreditor serving Minnesota. Over 13,500 students attend Rasmussen today. Rasmussen is committed to working with students to find a way to finance their education, whether through loans, scholarships, grants and credit transfers.

Rasmussen’s offers a Network Systems Administration Associate’s Degree. It gives you the keys to the skeleton of IT which includes systems analysis, network analysis and network and computer security. It’s fully online, but students will still work closely with industry hardware and software while learning networking and network maintenance, operations and network security. Rasmussen’s graduates have gone on to work at Best Buy, Microsoft, Target, Wells Fargo, Ikea, State Farm, Verizon and many other luminaries within the technology sector. This degree can be earned in as little as 18 months. It utilizes FlexChoice®, which lets students save on tuition with self-directed assessments and traditional courses to earn a degree with greater flexibility. It also prepares students to sit for the Cisco® CCENT, CompTIA® A+ (parts 1 and 2), CompTIA Linux+, CompTIA Network+, and CompTIA Security+ certification exams.

  • Rank: $300 6th
  • Feature: Course plan customized for you and accelerated classes.
  • Homepage

4) Lake Superior College

Lake Superior College (LSC) is a two-year community and technical college in Duluth, Minnesota. Nearly 4,800 students attend LSC, which has a 21:1 student-to-faculty ratio. 79% of its full-time students receive financial aid. LSC offers pre-baccalaureate majors to help students get credits they can transfer to 4-year schools, but also have over 90 certificate, diploma and degree programs in career and technical fields. LSC is proud of its Continuing Education/Customized Training division which works with area businesses and industry to build opportunities for entry-level and advanced education. The school offers over 150 courses online. Recently, over 25% of credits conferred by LSC have been delivered online and it’s offering more programs completely online.

Lake Superior offers an AAS in Network Administration & Cybersecurity. It prepares you to get CompTIA, Cisco CCENT, Microsoft MCP, or EC-Council Certified Ethical Hacker (CEH) certified. You’ll also learn the ins and outs of networking, hardware installation, software configuration, management for computers, routers and networks, designing systems and networks, and much more. Lake Superior has a Center for Cybersecurity that was created, “to provide a broad range of system security and information assurance services for local businesses and the community at large. The Center will provide students with real-world learning experiences in cybersecurity education through several business and government partnerships.” This is a great feature and extremely helpful for finding a job in Cybersecurity. The program takes two years to complete and costs approximately $15,000.

  • Rank:$203 3rd
  • Feature: As of Fall 2018, LSC will charge the same tuition regardless of where students are located.
  • Homepage

5) Madison Area Technical College

MATC is a technical and community college centered in Madison, Wisconsin. It serves students in parts of 12 counties in south-central Wisconsin: Adams, Columbia, Dane, Dodge, Green, Iowa, Jefferson, Juneau, Marquette, Richland, Rock, Sauk, and everywhere online. Over 15,600 students attend MATC, which has a 12:1 student-to-faculty ratio. The school offers classes online, accelerated (6-week), compressed (8-week), and through a hybrid format. It was founded in 1912, initially offering vocational education, citizenship, and homemaking classes. Now it offers 175 associate degrees and technical diploma programs, trade apprenticeships and other certifications.

MATC’s Information Technology-Network Specialist AAS program will get you ready to “administer, install, maintain and troubleshoot data and voice networks.” Students will gain an understanding of Local Area Networks (LANs), Wide Area Networks (WANs), and how they work with nodes, servers and other end user devices in networks. Students will also get hands-on training in network operating systems, user administration, network security, network design and implementing voice over IP (VoIP), in addition to managing Network Operating Systems (NOS) and client software, network security measures, user accounts, and network event logs for problem resolution. Students will be prepared to sit for several Windows, CompTIA and Cisco certifications, among others. This program is aimed at getting you into a Bachelor’s program and/or a good job upon graduation.

  • Rank: $201 2nd
  • Feature: Accelerated course structure
  • Homepage

6) Seminole State College of Florida

Seminole State College of Florida is a public state college. It has four campuses in Central Florida. It’s the eighth-largest member institution of the Florida College System, with over 1,700 students and a 22:1 student-to-faculty ratio. It was founded in 1965, of courses via distance learning. In 2006, Seminole Community College partnered with the University of Central Florida to launch “DirectConnect to UCF.” The program guarantees graduates of SCC get admitted to UCF, and gives students academic advising from university counselors. SSC also offers 39 online degree and certificate programs, including five online baccalaureate degree programs.

SSC offers and Information Systems Technology AAS, and a Network Systems Technology AAS. The former comes in Networking, Programming, and AS to BS (IST) specializations. The latter is offered with CISCO Network Infrastructure, Network Operating Systems, Security and Virtualization specializations. In the Network Systems Technology program you’ll learn to administer, design, install, configure, connect, plan and maintain local area and enterprise networks. And in the IST program you’ll supervise and set up local and wide area networks, and emphasize creating and maintaining database objects used to store, retrieve and manipulate data. Students will also be prepared to earn their Bachelor of Science in Information Systems Technology.

  • Rank: $381 8th
  • Feature: Guaranteed acceptance to University of Central Florida when accepted to SCC

7) Dakota State University

DSU is a public university. It was founded in 1881 in Madison, South Dakota. DSU is known for their graduate and undergraduate programs in computer science, business, education, natural sciences, liberal arts and more. Its motto is, “Technically, we’re better.” There are nearly 3,200 students (17:1 student-to-faculty ratio), and most students take their classes primarily online. In 2013, DSU ranked 4th among online schools in the United States on Guide to Online Schools’ rankings that year. It also tied at #32 among top public schools in the 2017 U.S. News & World Report’s midwest rankings.

DSU offers a Network and Security Administration (AS) online. It’s perfect for students who want to gain knowledge and skills in network and security administration and begin working as soon as possible. Students will learn basic security, systems and networking fundamentals. Classes are kept small, with generally 25 of less students in each class, ensuring hands-on instruction can be closely monitored on an individual level. DSU also offers access to student activities and clubs like the Computer Club or Gaming Club. There are also LAN parties, programming contests, MACSTECH Scholarship opportunities, great research opportunities, and unique virtual and physical labs.

  • Rank: $340 7th
  • Feature: Virtual labs, and an unusual amount of extracurricular activities.

8) University of Toledo

U of T is a public research university in Toledo. It was founded in 1872. Toledo serves over 20,600 students and has a 21:1 student-to-faculty ratio. Students can access more than 250 academic programs through 18 schools and its online division. U of T is a big proponent of undergraduate research, which builds essential skills that cross most industries. Its undergraduate engineering and business programs are consistently highly ranked by U.S. News & World Report, in addition to its excellent programming in computer science, nursing, pharmacy, physician assistant, law, and education.

Toledo offers an Associate Degree in Computer Network Administration entirely online. It prepares students to work in business and government. Students will leave the program ready to enter the “high-growth computer networking industry.” You’ll learn about operating systems management, programming, networking fundamentals, and computer integration, and graduate prepared for professional certifications from companies like Microsoft, CompTIA and Cisco. Toledo works hard to make sure transferring schools is easy for students who want to go on and continue their computer science education. Students will receive a free evaluation from Transferology.com as part of this effort.

  • Rank: $420 10th
  • Feature: Help transferring to a next program
  • Homepage

9) Central Texas College

Central Texas College is a community college based out of Killeen, Texas. It also has branch campuses in Europe. CTC serves over 18,100 students, and offers a 16:1 student-to-faculty ratio. It offers students access to Associate of Arts degree programs, Associate of Science degree programs, Associate in Applied Science degree programs, or Associate of Arts in General Studies, and over 40 certificate programs. For decades CTC has worked alongside US military members, and offered them programs around the world.

CTC offers a Network Systems Administrator AAS. It requires 60 credit hours, and can be completed in two years of full-time study. Students will learn to safeguard networks, make sure traffic runs smoothly and uphold reliability and security. You’ll be prepared for a number of lucrative positions, where you’ll install, configure, support and monitor a local area network (LAN), wide area network (WAN), Internet systems or part of a network system. Sample classes include Supporting Network Server Infrastructure, Web Design I, Project Management Software, and Firewalls and Network Security. This program also features an option for an Internship for credit in Computer Systems Networking/Telecommunication, or students can opt for classes that fill that void.

  • Rank: $235 4th
  • Feature: Internship or classes for credit.
  • Homepage

10) University of Phoenix-Arizona

The University of Phoenix is a private, for-profit university, operating from Phoenix, Arizona. It has been downsizing, and there are no current and accurate estimates of its student body and faculty. It was established in 1976, and became a behemoth in online education. It features an open-enrollment admission policy, so students need only a high-school diploma, GED, or equivalent to attend. Phoenix offers 100 degree programs at the associate, bachelor’s, master’s, and doctoral degree levels in schools of Advanced Studies, Business, Security and Criminal Justice, Education, Humanities and Sciences, Information Systems and Technology, Social Sciences, Health Professions, Nursing and Health Services Administration. In December of 2016, the US Department of Education approved the sale of Apollo Education Group, which owns UOPX for $1.1 billion to a group of investors that included the Vistria Group, a private equity firm run by Marty Nesbitt, friend of President Obama’s. It’s online Bachelor’s programs have been ranked tied at 193rd by U.S. News & World Report.

Phoenix offers an Associate of Arts concentration in Information Technology with Network Support Certificate. It requires 60 credits. The program focuses on teaching you how to build and support networks to keep an organization’s computers safe and interacting. You’ll learn how to install, configure and support local and wide area networks, and the ins and outs of network monitoring, website performance testing, network environment management, network security measures and much more. This program also comes with a certificate option, but both programs allow you to take courses that give you skills employers desire earlier, so you can show employers how competent you are before you graduate. Sample courses include Information Systems Security Concepts, Foundation of Local Area Networks, Wireless Networking Concepts, and more.

  • Rank: $398 9th
  • Feature: Enrollment representatives help you enter the program and plan how it can build your career.
  • Homepage

What Salary Should I Expect By Computer Science Degree Level?

Before investing time and money into a college degree it is important to take into consideration how your investment can be turned into profit. There are many ways to calculate the starting salaries and earning potential in your field of choice. Computer science degrees are some of the most employable types of degrees that students can choose. As many job markets are shrinking due to automation, computer science is one field that is projected to benefit and expand over the next few decades. Therefore, estimates of earning potential for computer science jobs might be understated at this time. As the Information Age continues to evolve more computer science jobs will be created, and there are already not enough qualified professionals to fill the demand in the job market place. Because of this there is great potential for promotion and salary growth since new positions open up on a regular basis. A computer science degree places graduates in one of the few job markets where they hold all the cards, as potential employers are looking for them, instead of the other way around. While a foot in the door with an associates degree will net you a comfortable salary, a more prestigious degree will grant you access to a higher starting salary, and will allow you to leap frog job applicants that are less qualified.

The computer science field has many various subsections: Information Assurance, Cyber Security, Information Systems, Information Technology, Computer Engineering, and the list goes on. Knowing what you have an affinity for is probably the most important factor in determining what kind of computer science degree to pursue, because they all have the potential to find high-salaried employment. If you are good at working with physical hardware, Computer Engineering could be the best route. If you are more comfortable doing high-level mathematics, Information Technology would be an appropriate degree to pursue. If you are interested in the political and social ramifications of online data breaches, Network Security would be a good path to follow. Let’s look at the average current salaries of some of the different jobs that students with computer science degrees are qualified for.

Associate’s Degrees in Computer Science

An associates degree in a computer science field will allow you to get your foot in the door for the least amount of investment. If you can see yourself climbing the company ladder towards promotion this might be the best route, though you should expect an entry-level job with a lower starting salary. Jobs in this field include Computer Support Specialist, who are expected to provide troubleshooting to private citizens or business employees that are using computer software and equipment. The median salary of a Computer Support Specialist is $52,160. Someone who has an associates in Network Security could land a job as a Vulnerability Assessment Analyst, where they would be expected to identify weak links in a company’s network that could be breached by a hacker. The average salary of a Vulnerability Assessment Analyst is $64,000. Someone with an associates in Information Technology would be qualified to become a Web Developer, where they would write code to create websites for companies. The median salary of a Web Developer is $66,130 per year. Associates degrees in computer science fields can therefore be expected to land you a job with a salary in the range of $50,000-$65,000.

Think you might be interested in an associate’s in computer science? Check out our ranking of the best online associate’s in computer science degrees.

Bachelor’s Degrees in Computer Science

A bachelor’s degree in a computer science field will qualify graduates for a number of higher paying jobs. A bachelor’s degree in Information Assurance would qualify someone to become an Ethical Hacker, where they would be expected to test network security by finding weak points in their system and attempting to breach them in order to patch weak points and make them safer. Ethical Hackers have a median salary of $72,000. Someone with a bachelor’s degree in Computer Science who has good command of coding languages would be qualified to become a Computer Programmer. Computer Programmers make an average of $79,840. Someone with a bachelor’s degree in Information Systems would be qualified to become a Network and Computer Systems Administrator, where they would be responsible for the daily operations of a company’s network. Network and Computer Systems Administrators have an average salary of $79,700. A bachelor’s degree in a Computer Science field can be expected to get you a salary in the range of $70,000-$80,000.

Master’s Degrees in Computer Science

A master’s degree in an area of computer science allows graduates to land jobs with high salary and position security. A master’s degree in Cyber Security would qualify you to become an Information Security Analyst. Information Security Analysts are expected to create networks that protect their company’s valuable data, and their average salary is $92,600. Someone with a master’s degree in Software Engineering would qualify them to become a Software Developer, where they would create apps and computer programs. Software Developers make an average yearly salary of $102,280. A graduate with a master’s degree in Information Systems could become a Computer Network Architect, where they would design data communication networks for private and public communications among businesses and their clients. Computer Network Architects earn an average salary of $101,210. A master’s degree in Computer Science can therefore be expected to net graduates a salary between $90,000-$105,000.

Think you might be interested in a master’s in computer science? Check out our ranking of the best online master’s in computer science degrees today.

Doctorates in Computer Science

Doctorates in Computer Science give graduates access to the upper echelon of salaries in their field. Computer and Information Research Scientists conduct research to create innovative uses for existing technology, applying their computer knowledge to fields like medicine, business, and science, and have an average salary of $111,840. Application Architects are expected to oversee a wide variety of software developments for tech-based companies, and have an average salary of $108,000. Data architects are responsible for archival maintenance and organization, and have an average salary of $119,000. The sky is the limit for graduates with doctorates in computer science, as they can expect to earn salaries of at least $105,000, with the potential to earn up to $150,000 and beyond.

Think you might be interested in a PhD in Computer Science? Check out ranking of the best computer science departments in the world today.

The 10 Most Lucrative IT Certifications of 2018

If you want a high-paying position, you’ll need to demonstrate high-value skills. Earning an advanced certification is always a great way to show employers what you’re capable of in black-and-white terms. Passing a rigorous exam, and often meeting additional experience requirements, demonstrates mastery by external standards, and can make an essential difference in your job prospects or career advancement. According to CIO.com, the right certifications could mean anywhere from an 8 to 16 percent increase in your pay.

Information technology is a highly dynamic and ever-changing field, however. As the industry evolves, new types or sets of certifications continue to crop up, while once-desirable credentials fall out of favor. So what IT certifications do today’s employers want to see? We’ve ranked the 10 of the most high-paying IT certifications of 2018 in ascending order, and given you the essentials on each, including:

Did you know?

Many online master’s degrees in computer science and information technology include industry-approved certifications in their course of study.

Check out our ranking of the best online master’s in information technology. Or request information from schools today.

  • The exam length and curriculum
  • The cost of the exam
  • Prerequisite certifications, courses or experience
  • How frequently employers post jobs associated with the certification
  • The average salary of jobs associated with the certification

Read on to discover which of these high-paying IT certifications fits your career goals.

#10 Citrix Certified Professional Ð Virtualization (CCP-V)

The Citrix certification website states that the CCP-V qualifies professionals to “install, configure and roll out common XenDesktop solutions.” In order to pass the certification test, you’ll need skills in scaling, optimizing, and advanced configurations and troubleshooting in virtual desktops.

What the Exam Covers

The test is 90 minutes long, and includes multiple-choice, drag-and-drop, simulations and decision trees. The test covers the following topics:

  • Intermediate FlexCast Management Architecture (FMA)
  • Workspace Environment Management (WEM)
  • The Virtual Desktop Agent (VDA)
  • App Layering
  • User Environment
  • StoreFront Optimization and Routing
  • HDX and Multimedia
  • Supporting and Troubleshooting User connection issues
  • Provisioning Services Infrastructure
  • Streaming the vDisk
  • Target Devices
  • Integrating Provisioning Services with XenApp and XenDesktop
  • Advanced Architecture
  • Supporting Provisioning Services

Exam Cost

$300 examination fee

Prerequisites

Before taking the exam for the Citrix Certified Professional Ð Virtualization (CCP-V), you’ll need to first earn the Citrix Certified Associate – Virtualization (CCA-V) credential.

Availability of Associated Jobs

There are 124 current openings for Citrix Certified Professionals in Virtualization, and employers include World Wide Technology, Inc., BAE Systems, Sparkhound, and, of course, Citrix.

Average Salary of Associated Jobs

Professionals with the CCP-V credential make a median income of $83,166, and salaries for top positions can be higher than $115,000.

#9 Cisco Certified Networking Professional (CCNP) Routing & Switching

Cisco still dominates the realm of networking. The Cisco Certified Networking Professional- Routing & Switching (CCNP-R&S) credential is a solid professional choice, and has remained so for some time. This desirable credential requires an unusually extensive and costly testing process, which requires candidates to show mastery of Cisco switch and router planning, installation, configuration, and troubleshooting. The Cisco certification website states that the exam, “validates the ability to plan, implement, verify and troubleshoot local and wide-area enterprise networks and work collaboratively with specialists on advanced security, voice, wireless and video solutions.”

What the Exam Covers

Three exams are required for the CCNP- R&S: Routing, Switching and Troubleshooting. Each test is 2 hours long and covers a number of topics:

  • Routing: IP addressing and routing in implementing scalable and highly secure Cisco routers that are connected to LANs, WANs, and IPv6.
  • Switching: planning, configuring, and verifying the implementation of complex enterprise switching solutions that use the Cisco Enterprise Campus Architecture.
  • Troubleshooting:knowledge in planning and performing regular maintenance on complex enterprise routed and switched networks
    Using technology-based practices and a systematic ITIL-compliant approach to perform network troubleshooting.

Exam Cost

$200 for each of the three required tests ($600 total)

Prerequisites

Before being awarded the CNP- R&S, Cisco requires that candidates first earn the Cisco Certified Network Associate- Routing and Switching certification or any Cisco Certified Internetwork Expert certification.

Availability of Associated Jobs

There are 3,725 job openings for IT professionals with the CCNP in Routing and Switching credential, making this a popular job qualification. Employers for this credential include Spectrum and General Dynamics Information Technology.

Average Salary of Associated Jobs

Jobs associated with this certification make a median of $83,178.

#8 Project Management Professional (PMP¨)

From security to networks to program development, IT work consists of projects which require planning and oversight. While the PMP is not exclusively an IT certification, it’s in-demand in IT firms, and has been for many years. A Project Management Professional (PMP) certification on your resume shows that, as an IT professional, you have not only technical skill, but managerial expertise as well. The PMP is the most recognized of all project management credentials, and is administered by the Project Management Institute (PMI). According to the
PMI certification website, the PMP demonstrates that those holding the credential “understand the global language of project management.” The exam curriculum is organized according to the linear phases any project must go through: initiation, planning, executing, controlling and closing.

What the Exam Covers

The exam is 4 hours long and consists of 200 multiple-choice questions, which cover the following topics:

  • Initiating projects
  • Planning projects
  • Executing projects
  • Monitoring and controlling projects
  • Closing projects

Exam Cost

$555 examination fee, or $405 with membership in the Project Management Institute (PMI)

Prerequisites

A bachelor’s degree, along with 4,500 hours leading and directing projects and 35 hours of project management education are required to take the PMP. Those without a bachelor’s will need 7,500 hours leading and directing projects and 35 hours of project management education.

Availability of Associated Jobs

There are some 12,414 positions open for Project Management Professionals, making this the most popular certification in our ranking. A few of the most these are Advantage Solutions, General Dynamics Information Technology, Grant Thornton, and Jackson Hewitt.

Average Salary of Associated Jobs

Professionals with the PMP certification make a median of $84,094, and a recent survey by PMI found that those with a PMP earn 20% more than those in a similar position without.

#7 Citrix Certified Associate Ð Networking (CCA-N)

Those with Desktop and App visualization experience looking for a high-paying IT certification should pursue the Citrix Network Certified Associate- Networking credential. Professionals with the CCA-N have the knowledge required to administer enterprise environments consisting of NetScaler Gateway to allow secure remote access to data, desktops and applications.
According to the Citrix certification website, the CCA-N, “validates the knowledge and skills needed to implement and manage Citrix NetScaler 10 for app and desktop virtualization solutions in an enterprise environment.” You’ll be able to select one of two exams to attempt in order to qualify for the CCA-N, specializing in either Unified Gateway or Traffic Management.

What the Exam Covers

In order to earn the CCA-N, candidates may take either of two exams: Citrix NetScaler Essentials and Unified Gateway or Citrix NetScaler Essentials and Traffic Management. Both are 2-hour tests and cover the following curriculum:

  • NetScaler Platforms
  • Load Balancing
  • SSL Offload
  • Securing the NetScaler
  • Troubleshooting
  • Unified Gateway
  • AppExpert Expressions and Policies
  • Authentication, Authorization and Policies
  • Managing Client Connections
  • Integration for XenDesktop and XenApp Solutions
  • Configuring Unified Gateway
  • Classic and Default Policies
  • Rewrite, Responder, and URL Transform
  • Content Switching
  • Optimization
  • Global Server Load Balancing

Exam Cost

$200 test fee

Prerequisites

There are no prerequisites, though Citrix recommends preparing with their training for the NetScaler 12 Essentials and Unified Gateway Exam or their training for the NetScaler 12 Essentials and Traffic Management exam.

Availability of Associated Jobs

There are 16 current openings for Certified AWS Solution Architects. Some of the companies which look for this certification are BAE Systems and Sparkhound.

Average Salary of Associated Jobs

Professionals with the CCA-N Certification make a median salary of $86,300.

#6 CEH (Certified Ethical Hacker)

With the high-profile data breaches at places like Equifax and Yahoo, organizations are looking to hire security experts of every stripe. If you’ve got the skills to probe and uncover security flaws, you can use your knowledge to strengthen, rather than exploit, the security of networks and systems, and earn a good salary doing so. The Certified Ethical Hacker credential is offered by the International Council of E-Commerce Consultants (EC Council), and according to the EC Council’s certification website, designates professionals who know how to “look for weaknesses and vulnerabilities in target systems and use the same knowledge and tools as a malicious hacker, but in a lawful and legitimate manner to assess the security posture of a target system(s).” The exam covers the many techniques hackers use to infiltrate and compromise security systems; you’ll need to show that you can “think like a hacker” in order to pass. While the exam is challenging, this high-paying credential is essential to success in this exciting and in-demand field.

What the Exam Covers

The examination is an 4-hour test, which consists of 125 multiple choice questions. The test covers the following subjects:

  • Footprinting and Reconnaissance
  • Scanning Networks
  • Enumeration
  • System Hacking
  • Malware Threats
  • Sniffing
  • Social Engineering
  • Denial-of-Service
  • Session Hijacking
  • Hacking Web Servers
  • Hacking Web Applications
  • SQL Injection
  • Hacking Wireless Networks
  • Hacking Mobile Platforms
  • Evading IDS, Firewalls, and Honeypots
  • Cloud Computing
  • Cryptography

Exam Cost

The cost is $500 to take the EH test, plus a $100 eligibility fee for those selecting self-study over a formal preparation course which includes the examination.

Prerequisites

Because of the sensitive nature of information relating to security and security flaws, the EC Council is stringent in its eligibility criteria. The EH examination is open to those who have completed the EC Council’s preparation course, or to those who self-study and can verify two years’ work in the security field.

Availability of Associated Jobs

There are 2,378 jobs posted for Certified Ethical Hackers. Common employers include IT and defense companies, such as Raytheon, General Dynamics Information Technology, Foreground Security, and Lockheed Martin.

Average Salary of Associated Jobs

IT workers with the CEH certification earn a median income of $87,315.

#5 Certified Information Systems Security Professional (CISSP)

Like the CEH, the CISSP is a high-paying IT certification related to security. The CISSP is the go-to credential for IT experts who wish to specialize in designing and maintaining organization-wide security infrastructures. Offered by the International Information Systems Security Certification Consortium, or (ISC)2
The (ISC)2’s certification website states that the earning this credential requires “understanding of new threats, technologies, regulations, standards, and practices.” The exam covers eight knowledge domains, including Security and Risk Management, Identity and Access Management and Software Development Security, among others.

What the Exam Covers

The CISSP is a 3-hour test with, multiple-choice and “advanced innovative response” questions. The test covers following eight knowledge domains:

  • Security and Risk Management
  • Asset Security
  • Security Engineering
  • Communications and Network Security
  • Identity and Access Management
  • Security Assessment and Testing
  • Security Operations
  • Software Development Security

Exam Cost

The cost is $549 to take the test, and additional attempts cost $345

Prerequisites

In addition to the examination, you’ll need five years of cumulative, paid, full-time professional experience in any two of the above eight knowledge domains OR a bachelor’s degree in a related field OR one of a large number of (ISC)2-approved CISSP “prerequisite Pathway” credentials.

Availability of Associated Jobs

There are 10,689 job postings for Certified AWS Solution Architects, making this the second most-popular certification in our ranking. Security and communications companies are actively hiring, including Lockheed Martin, Leidos, AT&T, and Booz Allen Hamilton.

Average Salary of Associated Jobs

IT workers with a CISSP Certification draw an average income of $87,770.

#4 Certified Information Systems Auditor (CISA)

Information systems audit control, assurance and security professionals are in demand, and the CISA is a longstanding, desirable and high-paying IT certification. The ISACA has been offering this certification for 30 years- a lifetime in the world of IT. The ISACA’s certification website calls this credential the “standard of achievement for those who audit, control, monitor and assess information technology and business systems.” The examining body has recently added more testing centers and dates, along with faster results processing, which makes the examination more convenient. The test covers five knowledge domains, such as Governance and Management of IT and Protection of Information Assets.

What the Exam Covers

The examination lasts 4 hours and consists of 150 multiple-choice questions, covering the following five knowledge domains:

  • The Process of Auditing Information Systems
  • Governance and Management of IT
  • Information Systems Acquisition, Development, & Implementation
  • Information Systems Operations, Maintenance, & Service Management
  • Protection of Information Assets

Exam Cost

It costs $595 to take the exam, with several discounts available. Membership in the ISACA discounts the cost to $465. Early registration is $415 for ISACA members and $545 for non-members.

Prerequisites

In addition to a passing exam grade, you’ll have to show a minimum of 5 years of professional information systems auditing, control or security experience to earn the CISA. Short on time in the field? ISACA allows various substitutions of education for up to three years’ experience.

Availability of Associated Jobs

This IT certification is very popular; there are 4,888 positions currently open for Certified Information Systems Auditors. Some of the companies hiring CISA certified workers are QuickChek, PwC and Wells Fargo.

Average Salary of Associated Jobs

While the exam is notoriously difficult, this is one of the most high-paying IT certifications. The average annual salary for professionals with the CISA Certification is $87,906.

#3 Certified Information Security Manager (CISM)

The ISACA’s certification website describes this credential as signifying “international security practices and recognize[ing] the individual who manages, designs, and oversees and assesses an enterpriseÕs information security.” As our number three in High Paying Certifications of 2018, the CISM comes with an impressive paycheck, and big responsibilities. While the CISA qualifies professionals as IT auditors, the CISM designates IT security managers and information risk managers, and requires a command of security policy and strategy. The test requires mastery of four domains:

What the Exam Covers

The exam is a 150-question, multiple-choice examination, which takes 4 hours to complete. Questions focus on the following five domains:

  • Information Security Governance
  • Information Risk Management
  • Information Security Program Development and Management
  • Information Security Incident Management

Exam Cost

As with the CISA, the CISM test costs $595 for ISACA non-members and $465 for members. Early registration costs $415 for members and $545 for non-members.

Prerequisites

A CISM candidate must show 5 years of full-time, paid, professional experience in thei field. In addition, 3 of those 5 must be directly related to information security management. Unlike the CISA, it is not possible to substitute education for filed experience.

Availability of Associated Jobs

There are 3,246 current openings for IT workers with this certification. Relatively few professionals possess the CISM, making this a desirable credential. Common employers include PwC, BNY Mellon and CTR Group.

Average Salary of Associated Jobs

This high-paying IT certification nets an average salary of $ 92,827.

#2 Certified in Risk and Information Systems Control (CRISC)

The CRISC is the third credential offered by ISACA to make our list of Highest Paying IT Certifications of 2018. According to the ISACA’s certification website, the CRISC “recognize[s] a wide range of professionals for their knowledge of enterprise risk and their ability to design, implement, monitor, and maintain IS controls to mitigate such risk.” Simply put, the CRISC indicates an advanced understanding of enterprise risk assessment and control from a business perspective usinf Information Systems (IS) controls. Like data security, expertise in risk assessment has a certain level of built-in job security- companies will always want the greatest possible understanding of the risk entailed in their business ventures. As such, you’ll find that project managers and other business professionals pursue this lucrative and in-demand certification alongside IT pros.

What the Exam Covers

Like the CISA and CISM, the CRISC exam is 4 hours long and consists of 150 questions drawn from these four knowledge domains:

  • IT Risk Identification
  • IT Risk Assessment
  • Risk Response and Mitigation
  • Risk and Control Monitoring and Reporting

Exam Cost

Like other ISACA-administered examinations, the fee is $595 for ISACA non-members and $465 for members. Early registration for members is $415; non-members pay $545.

Prerequisites

To qualify, candidates need 3 years’ in managing IT risk by designing and implementing IS controls. Of these, two must be in the knowledge domains specified above, including at least one on the first two essential domains (Identification and Assessment). including experience across at least two (2) CRISC domains, of which one must be in Domain 1 or 2, is required for certification. Unlike the CISA and CISM, no substitutions for this experience can be made based on education.

Availability of Associated Jobs

Financial institutions, such as Citibank and Wells Fargo, frequently post jobs requiring a CRISC certification. There are currently 771 such positions open.

Average Salary of Associated Jobs

Professionals with this high-paying IT certification can expect to make about $99,400 per year. The highest-paying positions associated with this certification can reach salaries of $150,000.

1. AWS Certified Solutions Architect Ð Associate

The very highest-paying IT certification on our list of 2018’s best, is the AWS Certified Solutions Architect Ð Associate credential. AWS (Amazon Web Services) is the top public cloud platform, and demand for skilled AWS architects is hotter than hot. The exam is rigorous and demands a thorough understanding of designing and deploying scalable systems on AWS. The certification website states that “the AWS Certified Solutions Architect Ð Associate exam is intended for individuals with experience designing distributed applications and systems on the AWS platform.”

What the Exam Covers

The exam is an 80-minute, multiple-choice exam, which covers the following topics:

  • Designing and deploying scalable, highly available, and fault tolerant systems on AWS
  • Lift and shift of an existing on-premises application to AWS
  • Ingress and egress of data to and from AWS
  • Selecting the appropriate AWS service based on data, compute, database, or security requirements
  • Identifying appropriate use of AWS architectural best practices
  • Estimating AWS costs and identifying cost control mechanisms

Exam Cost

$150 examination fee, with a practice exam available for $20.

Prerequisites

None, but Amazon recommends the following coursework: Architecting on AWS and AWS Certification Exam Readiness Workshop: AWS Certified.

Availability of Associated Jobs

There are 165 current openings for Certified AWS Solution Architects. Common employers include Capgemini, Capital One, IBM, and, naturally, Amazon.

Average Salary of Associated Jobs

Professionals with the AWS Solutions Architect Certification make a median of $124,900. Even entry-level jobs associated with the AWS Solutions Architect certification make about $100,000, and top positions can pay as high as $200,000.


Is writing a technology? Does writing require a technology? The second question treats technology as a tool, which is the modern definition, while the first question treats technology as a technê, which the Ancient Greeks used to denote craft or art. But are the definitions mutually exclusive? An Athenian potter might demonstrate an astonishing level of craft in shaping, firing, and painting a vase, but the endgame is always the same: a vase. Today it’s exhibited in the British Museum alongside jewelry and bronzes and admired as art, but three thousand years ago it sat on the dirt floor of an Athenian kitchen. It was a pretty vase, but it was a vase. There were plenty others.

So to avoid any philosophical black holes, let’s say that writing and technology are related, which is an important if obvious point. Because if they’re related they can affect each other, and if they can affect each other they can improve each other. (In theory.)

Thus the growing popularity of writing apps and editors, from proofreading plugins like Grammarly to distraction-free processors like Writer. The most ambitious of the bunch is the Hemingway App, which “makes your writing bold and clear” so that “that your reader will focus on your message, not your prose.” I’ve never used it until this piece.

To give a brief summary: Hemingway has a free browser interface, or you can download a $20 desktop app that includes premium features like Wordpress integration and HTML exporting. (I’m using the free option because it’s the free option.) There are two modes—”write” and “edit.” The writing mode looks like your average word processor with less buttons. The default font is good-looking, the page is clean, and you’re provided basic formatting gadgets like italics, bullet points, block quotes, and header sizes. It’s nice!

So you write your masterpiece, and then you toggle to the edit mode. Unless you are a robot, the page will now contain splashes of light blue, lime green, blonde, lavender, and what my Google image search calls salmon. Each color corresponds to one of the app’s five writing no-no’s: adverbs, passive voice, “complex” words, sentences that are hard to read, and sentences that are very hard to read. As of now, my editing page is some combination of Rothko and late Monet. It’s dizzying, but better than a series of stark red strikes.

Does it work?

It’s certainly a hands-on editor. When I write certainly it paints a blue highlight and advises me to “use a forceful verb.” Fair enough. But adverb tallying is an old trick, and not always a helpful one. Yes, adverbs can get in the way, and too many is a sign of bloated or plain bad writing. But adverbs can also add style. Same goes for passive voice. The shape of a sentence is part of its meaning, and inverting a sentence from active to passive can produce a powerful effect. (For instance, of powerlessness.)

Still, I’m being nitpicky. It’s important to note that the editor’s suggestions aren’t static. The longer the piece, the more adverbs I’m allowed, and the more passive voice I’m allotted. More important, Hemingway’s guidelines say “view our suggestions as just that,” and some suggestions are right. In general, it’s better to avoid a big word when a small one will do. (Though that’s Orwell, not Hemingway.) And in general a simple declarative sentence holds more capacity for truth than an elaborate, showy one. (That’s Orwell and Hemingway.)

So if a writing app can “work”—which is a dubious way of putting it—Hemingway does. The better question is how to use it. And if it’s not already obvious, Hemingway should never be used for any creative purposes, in both the name of creative freedom and the future of independent humane art.

I say that not as a Luddite, nor out of any transhumanist paranoia. (Not consciously, anyway.) I’m aware that technology has enhanced and expanded many art forms. It’s ushered in several more, including writing. But Hemingway has no intention of enhancing your writing and never pretends to, contrary to that misleading name. It’s a paring tool.

And what about that name? It’s clever branding, for sure. But it underscores some of the app’s ironies.

(As a pedantic side note on some of these ironies: Hemingway’s once lauded style now comes across as artificially austere. Guy Davenport wrote that “Hemingway’s prose is like an animal talking. But what animal?” And while Hemingway has a reputation for spare writing, he doesn’t have a reputation for much self-editing, which was left to Max Perkins and Gertrude Stein. Given the app’s fastidiousness, Flaubert might’ve been a more accurate, less compelling name.)

Of course, the main irony is that Hemingway doesn’t meet Hemingway’s standards, which a New Yorker piece nicely parodies. (Still, the creators are happy to display a positive New Yorker blurb on their site.) Consider the opening sentence of Hemingway’s short story, “Fathers and Sons”:

THERE HAD BEEN A SIGN TO DETOUR IN the center of the main street of this town, but cars had obviously gone through, so, believing it was some repair which had been completed, Nicholas Adams drove on through the town along the empty, brick-paved street, stopped by traffic lights that flashed on and off on this traffic-less Sunday, and would be gone next year when the payments on the system were not met; on under the heavy trees of the small town that are a part of your heart if it is your town and you have walked under them, but that are only too heavy, that shut out the sun and that dampen the houses for a stranger; out past the last house and onto the highway that rose and fell straight away ahead with banks of red dirt sliced cleanly away and the second-growth timber on both sides.

Now, this is a far cry from boilerplate Hemingway, but I’m out to make a point (which includes the fact that Hemingway’s minimalism is overstated). The app highlights two adverbs, cleanly and obviously, plus been completed, with the especially helpful hover text: “Passive voice: Use active voice.” The rest of the sentence is glazed in that becalming salmon color, which means it’s very hard to read. Leaving aside the other potential adverbs and passive constructions in the excerpt, the app’s least effective suggestions are these “too hard to read” highlights, which are mainly predicated on length.

Let’s look at another sentence from the same story:

Like all men with a faculty that surpasses human requirements, his father was very nervous.

This sentence earns the yellowish, blonde highlight for a first degree of difficulty. A long dependent clause begins the sentence, but for strategic purposes. It’s not hard to read.

Another, from “A Clean, Well-Lighted Place,” which James Joyce praised for its lucidity:

The two waiters inside the café knew that the old man was a little drunk, and while he was a good client they knew that if he became too drunk he would leave without paying, so they kept watch on him.

This one earns four salmon ribbons, and, given its shape, could in fact be mistaken for a salmon!

I don’t think I’m being nitpicky here. Sure, the app isn’t designed to edit literature, but that misses the point: it disproportionately flags sentences containing multiple clauses or more than a dozen words. It risks simplifying language to the point of etherization.

So use Hemingway as necessary. White papers, press releases, some journalism, maybe an essay—anything that needs good copy can stand to benefit, but copy can be clean without being dull. I’d take the “hard to read” alerts with a fistful of salt, and I wouldn’t recommend writing within the edit mode—you’ll second-guess yourself the whole way. Better to draft somewhere else and copy-paste into the app, and it’s especially helpful if you need a quick pass on something. In any event, the need for technê remains.

10 Skills Necessary for Coding

At its heart, coding is expression and problem solving. You can focus on its applications, on programming languages, but no matter how you practice it, you’ll cultivate these two essential skills, which will help you in all aspects of life. Besides existential value, learning to code proficiently will offer you myriad job opportunities, the ability to create your own schedule/work from anywhere, high wages for less hours of labor, eager to please clients that need/search for your help, and much more. Coders have more time to work on their passions, side projects, and enjoy a sense of self-reliance most workers don’t. They spend their time making websites, applications, and systems work, while building real solutions, and improving experiences for end users and employers alike. Coders have enhanced focus, because the issues they tackle require sustained, concentrated effort. This leads to greater productivity in all sectors of life. One of the greatest benefits from coding is consistently entering a state of flow, in which time, distraction and frustration melts away, allowing the coder to form a union with the task at hand. For all these reasons, coding casually or professionally can improve your life. So how to begin? Here we’ll examine ten skills that every coder needs.

1) Self-Reliance

This one is huge. When you start out coding, it can feel completely overwhelming. Should you focus on front end or back end? What programming languages should you use? Where to begin? Keeping in mind that the only way to eat an elephant is a bite at a time, pick something and start. There are infinite resources where you can learn to code, but it’s up to you to seek them out, and engage with them. There will be times where you want to give up, or have someone else show you how to do something, but the more you resist those urges and try and fail on your own, the greater your longterm success. To have any success in coding, you’ll have to master impatience, frustration, distraction and the dependence on external forces to solve technical problems (something we’re all increasingly reliant on). In order to combat these obstacles, there are several things you can do. The first is accepting responsibility.

You have the greatest influence on where you are, what you know, your capabilities, and how to change all of them. It’s never too late to recognize this and change your approach and efforts. Once you’ve taken responsibility, the information you consume and how you apply it, (your interest, study and effort) will dictate your ability to transcend your limitations (in this case, not being able to code vs. learning how to). It’s important to have a goal in mind. Why do you want to code? What problem do you want to solve, or what project are you hoping to manifest? Knowing the answers to these questions will help you narrow down where to focus your efforts, what languages to learn, etc. Finally, self-reliance boils down to the choices you make. You can’t just put in work blindly. The same way you need to have goals the work is aimed towards, you need to choose a path that will bring you towards them, independent of what others have done, or leaving it up to chance.

2) Language

It may seem obvious, but in order to write code, you’ll have to learn at least one programming or scripting language. Some resources for beginners include the completely free CodeAcademy, which has helped 24 million people begin their coding experience, edX, founded by Harvard and MIT, which offers 60 schools and GitHub, which gives you access to 500 free programming books that cover 80 different languages. Experts suggest trying to become proficient in one language rather than trying to learn very little of a few, the same way you would take French, Italian or Spanish rather than all three at once. So which language to begin with? That has a lot to do with what you’re trying to accomplish, but there are three that stand out for their multi-faceted applications, consistent utility and accessibility to beginners. These three are Python, Ruby and JavaScript.

Python, developed in the 80’s, is considered one of the easiest coding languages to learn. It’s free, open source, and most often classified as a scripting language (meaning it doesn’t require an explicit compilation step). It’s one of the most ubiquitous programming languages today, and used by the likes of Google, Yahoo! and NASA. Ruby is a similar beginner-accessible, extremely prevalent scripting language. It’s dynamic, object-oriented scripting language used to develop websites and mobile apps. Ruby was designed by Yukihiro Matsumoto to be easy, logical, and not require advanced knowledge of commands. Ruby on Rails, helped expand its usefulness for the web, and is used to make the framework for Twitter, Groupon and GitHub. It’s also often used for backend development. JavaScript (not Java) is most often used as aclient-side scripting language for front-end development. It’s the most frequently used programming language to make websites and games for Internet use, much of its syntax comes from the programming C Language. JavaScript is universal, running on all platforms and is in your browser (no installation required). Anything you want to build on the web will require some knowledge of JavaScript.

3) Logic

Were you a master of Geometry in high school? Love proofs? Live to assess the facts at hand and come to useful conclusions for problem solving? You may have a skeleton in one of the most important skills for coders. There’s a reason so many people that study math and physics end up as coders. Figuring out what mistake/bug/bad line of code led to an issue in a project is partially intuitive, but often an exercise in logic. So how do you build up your logic skills? Treat them like muscles, and exercise them. There are tools like Dcoder which gives you challenges/problems that will develop your reasoning. Another way to build logic skills is through conditional thinking, which essentially means, if this, then that. For example, let’s say if you climb more than halfway up the mountain, you’ll get a nose bleed. If you stay below the halfway point, you won’t. In programming, this style of thinking is used to test variables against values, and order action based on what conditions are met. It can be understood like this:

if (a condition evaluates to True):
then do these things only for ‘True’
else:
otherwise do these things only for ‘False’.

Simple mechanisms can’t do this. It’s these conditional statements that let the program take on an analytical life of its own and not just follow one set of instructions to its end. It’s important to use conditional thinking or statements to your benefit, but not live or die by them. They’re a tool to help expand the abilities of what you’re creating, but shouldn’t box you in in your ability to troubleshoot. Take the previous example. It’s important to realize just because someone’s nose is bleeding, doesn’t mean they went halfway up the mountain. Nose bleeds happen for all kinds of reasons. Removing yourself, and your subjective experiences from the situation at hand will be helpful. What you’ve encountered, or think you know, should be used as a suggestion, but not an end all. Be open to being proven wrong. Observe any problem or task as it is, and let that dictate how you approach it, doing so so from a what, how and then why progression.

4) Attention to Detail

Many programmers and coders don’t go to school to learn their trade. There are different ways to measure aptitude for coding, but nothing can substitute the effort a person makes, on their own. It’s one of the few areas in the world where self-taught hard work can lead to a lucrative, highly demanded career. What you won’t NEED to have learned, or have prerequisite abilities, will be mitigated by how closely you can pay attention to details. The understand of the interconnectivity in commands, general awareness and lingual precision are all extremely important parts of a coder’s toolkit. One way to do this is through organization. Instead of hammering yourself each time you overlook an important detail, build a game plan from which you can assess, review and improve your work. Maybe taking laps through the code you write, or promising to reread pertinent information at different times of the day, while working intermittently. Whatever works for you, just make sure you have a system beyond, “I will pay attention to the small stuff.” Scheduling your time leads to more productive, efficient work.

Improving your attention to detail has a lot to do with knowing what to look for. Towards that end, make lists. When you learn something that you know will be useful again and again, write it down. When you have work, research, new skills or languages to do or learn, list what you’re hoping to accomplish, and how you do it. When you achieve something on the list, put a check mark next to it (don’t cross it off, you may need to come back to it). Another way to improve your prescience is maintaining a schedule. You may not going to be as sharp after big meals, or first thing in the morning. You’ll figure out best when you’re most on point, but take note of it, and do your programming or coding work when you’re on top of your game. Another time-honored way to improve focus is meditation. Even focusing on your breath for 10-20 minutes a day will pay dividends in the rest of your life. Another surprising way to improve concentration? Exercise. At least 30 minutes a day leads to a marked improvement in focus. Most importantly, be gentle with yourself. Develop a sense of when to push through despite wanting to break, but also make sure to give yourself brief breaks when you’re feeling unmotivated or having trouble paying attention to details. Then when you come back you’ll be fresher and get better use of your effort.

5) Recognition of Stupidity

This could also be “understanding how computers think.” We’ve all been told not to make assumptions, but assuming common sense on behalf of a computer while programming or coding is a recipe for disaster. Computers are dumb, and ruthless. Their strength is their processing power, not independent or creative thought. They’ll do exactly what they’re told to, even when it might seem obvious to gently tweak instructions, or not follow the same ones again and again. People like Bill Gates and Stephen Hawking have warned about artificial intelligence leading to the apocalypse. Nick Bostrom, a student of super intelligence and the director of the Future of Humanity Institute at Oxford University, laid out how the world could be destroyed by artificial intelligence under instructions to maximize the number of paper clips in the world. If that AI was able to invent technology and build manufacturing plants…look out. “How could an AI make sure that there would be as many paper clips as possible?” asked Bostrom. “One thing it would do is make sure that humans didn’t switch it off, because then there would be fewer paper clips. So it might get rid of humans right away, because they could pose a threat. Also, you would want as many resources as possible, because they could be used to make paper clips. Like, for example, the atoms in human bodies.” So when you’re coding, make sure what you’re inputting is what you expect to be output, no more, no less. The program can’t make adjustments or improvements that it’s not told to do first.

Some of the greatest achievements in programming have been creating algorithms that get computers to think in more independent, brilliant and productive ways. Look into algorithms like Quicksort, Huffman Compression, the Fast Fourier Transform, and the Monte Carlo method to see what I mean. All of these have helped develop a major goal for coders: getting computers to do more of the heavy lifting through artificial intelligence, yet doing so in a way that is useful, focused and doesn’t lead to our species’ destruction. So when you’re coding, try to think the way a computer does, and use your attention to detail skills to make sure you specify exactly what you want, without leaving anything to chance or adaptation. You won’t have to specify EVERYTHING, some calculations will be made automatically to free you up to directing the program. But maintaining a mind frame where you don’t trust what you’re working on to do anything it wasn’t explicitly told to is extremely important.

6) Abstract Thinking

Abstract thinking is thinking done without the object of the thought present, or even physical. It’s a foundation of coding. Because the written code, and what it produces can never be observed and measured physically, successful coders have to develop an ability to think abstractly, in larger, more comparative ways than they may be used to. Abstract thinking is also the ability to think about a subject, object or project on many levels at once. Being able to balance different symbols, commands, and processes that are in place, running automatically, vs. those that you need to more directly oversee/renovate is an important, often overlooked part of coding. Abstract thinking is often improved through discussions with others. It involves a willingness to see things from a different angle, or to draw analytical conclusions from what might seem straightforward.

Let’s say for example that you told someone to go buy a pizza. That would work out great if the person automatically knows how to get to the pizza store, what money to bring, the pizza you’d like ordered, and even smaller, more minute calculations like how to drive, walk, or continue breathing. You might even bring back a pizza that I wouldn’t think I’d enjoy. But perhaps after eating it, I learn to love it. An abstract thinker could recognize something in my newfound reaction to a previously undesired pizza that speaks to the ability to change our feelings and desires even when we don’t think we will or want to. Being able to separate, create and visualize what a program knows, what it can know, what it’s compartmentalized already and how these factors interact are all essential to coding.

7) Patience

On horribly hot days, you have the choice to rebel against the heat, huffing, puffing, and letting agitation overheat you even further. Or you can give in to it. Accept that you’re cooking in the sun, picture yourself melting into the pavement, erasing separation from the heat in your mind. Coding is extremely difficult. Nothing that you’ve read here, or read somewhere else should be interpreted differently. At all stages, but especially when beginning, you should expect to feel extreme frustration. However, your ability to withstand that frustration, and move through it, without letting it discourage you will serve you in all that you do. Look at your frustration as a tool to develop your patience. When you’re coding, you’ll likely go through this experience: you write something. You’re extremely confident in it. You double and triple check it, and it still doesn’t work. You have no idea why it doesn’t work, what you did wrong, how to fix it, etc. It can be a crushing weight. You can feel useless, or like you’ll never be successful, not just at this project, but in life. Take comfort in the fact that countless people have felt this way before you. How you deal with this feeling is all that matters. If you believe in your ability to overcome, find a new route, or even start from scratch and improve, you can and will (or at least you’ll have a way better shot than those that give up completely).

Paying attention to details goes hand in hand with taking time to let their meaning develop. “Details matter,” Steve Jobs said. “It’s worth waiting to get it right.” Recognize that when you’re struggling, what you’re dealing with is uncomfortable, but not intolerable. Repeating that to yourself until it becomes ingrained will be very helpful. Let the pain you feel from frustration push you to find solutions. Solutions rarely come from desperation, or the quickest, wildest approach. A big part of patience is talking to yourself. When you hear the voice of, “you’ll never do this, this is impossible, just give up,” be ready to counter it with a more determined, softer, kinder voice that represents your deeper, persevering core. One of the best ways to build patience is through reading, or really any sustained activity that requires focus. The longer you can do one thing, despite the temptation to quit, or go do another, the better your ability to overcome the frustration of coding will be.

8) Strong Memory

Innovation and improvisation are extremely important to coding. In many cases you’ll find yourself completely baffled, or faced with a problem, project or situation you think you know nothing about. Sometimes you’ll be right. Often, if you think hard enough through your experiences, you’ll realize something you’ve already encountered may prove useful again. It might be from direct coding experience, or it might be an abstract, unrelated memory that somehow seems pertinent, or just through recalling it makes you think of something useful for the moment at hand. While working with the same languages, you’ll internalize syntax, and it will feel less like using memory and more second nature to recall important commands.

When it comes to long term memory, you’ll be aided by infinite manuals, websites and tools that will help you recall important information. As you develop your abilities (and want to complete projects faster), memorizing more information will be useful, but it’s not something to worry about immediately. However, when it comes to short term memory, you’ll want to do whatever you can to cultivate and improve your natural faculties. Coders need to be aware of many different pieces of information at once, and know how they’ll all react to each other. Being aware and able to visualize design, data flow, algorithms, data structures, and how they effect each other will separate you from the average coder. At first it can feel like juggling herring with ravenous dolphins jumping all around you, but it gets easier. This is where memory and flow coincide. The more you can lose yourself in the project, the less it will seem like a struggle to remember different aspects of the work. Meditation techniques and memory exercises can help with this as well.

9) Scientific Method

The problems/challenges of coding can seem infinite, daunting, and impossible to begin. That’s where using the scientific method to break down obstacles and projects themselves can become extremely helpful. In most jobs, you develop and learn many ways to solve problems in the first year or so, then apply them from there on, occasionally developing new solutions as well. But in programming, a good deal of your time will be spent developing solutions to problems that have never been solved (at least not in the exact way you’re encountering them). You won’t have information on how to go about solving them, you’ll have to use trial and error. Seeing coding as research or experimentation will be extremely useful. It’ll also aid you in terms of deadlines. Because you’re doing something new, you can honestly expect leeway because it’s unclear how long it will take to properly solve a problem. Following these steps will help you with whatever project you’re working on.

Start with a hypothesis. What do you think the program you’re writing will accomplish? Or, what do you think a program look like that could solve a particular problem? Next, you outline how you will write the code, either on paper or in your head. Then you take a crack at it, and see what you came up with. That’s followed by comparing what you created, and the control, or what the program was supposed to do. It’s also aided by showing the program to others and getting their input on what you’ve done. Does the program you created match what you expected? Does it serve the function it’s supposed to? Finally, you begin debugging, or bringing the program closer to the ideal you’d imagined.

10) Communication and Empathy

Perhaps the most overlooked aspect of programming has little to do with the manual and mental labor of writing code. Coding is an insular world that effects our lives more each day. Coders need to be able to work with, and explain what they do to employers, clients, consumers and coworkers that don’t understand what they do. Writing clean, effective code is great, but when you pair it with strong empathy and communication skills for beginning coders, end users, you become the rising cream. Anyone can say, “this is how we’re doing it,” or, “you just don’t understand.” Elite coders listen to feedback and adjust, even if those providing it don’t understand the ramifications of their words. An effective coder can manage expectations, interpret vague desires and honestly assess and communicate what is, and isn’t possible. Coders are known for their egos, but those willing to patiently give and accept advice and direction are far more respected than snarling programmers that only relate to their desktops.

Empathy is the art of comprehension, awareness, sensitivity and sharing of other people’s emotions. When coupled with the ability to express and prioritize others’ priorities and feelings, it’s extremely potent. Communication and empathy breeds positive, actionable accountability, and will make your job far easier in the long run. You’ll better understand others’ needs, feelings, and how your behavior and work are received and interpreted. And irregardless of coding, or work life, better communication and empathy will make you happier, more convincing and more durable to the negativity of others and hardships of life. These are skills that require proactive, consistent development, with the same level of focus and commitment you’d apply to learning a language or working on an important project.

How do I become a Web Developer?

How do I Become a Web Develop?

Over the last 20 years, web development has grown from being a crucial part of only the largest corporations and particularly geeky subcultures, to something that a whole new generation of creative and scientific workers is expected to some degree, to understand. In 2014 there were over 1 billion websites online, and while many of these sites are flotsam of previous projects and years, there are hundreds of millions of active sites today. For each, you’ve better bet there’s a developer (or a budding one). And for the hundreds of thousands of new sites that are created yearly, they have developers too. While demand for web developers has never been higher, the barrier to entry has never been lower. And vibrant ecosystems of open source platforms, advice forums, and opportunities for self education have expanded what even a single developer can output to astounding degrees. You’ve better bet it’s a good time to be a web developer.

Salary Expectations of Web Developers:
The salary of web developers in the United States varies greatly, and depends on the quality of a web developer’s work, the nature of their employment, and the extent to which their particular skillset is in demand. That said, the average salary for web developers in the US is quite good — particularly for a field that does not necessarily require higher education — coming in at $57,758. From current job openings on Payscale, the lowest current listing on the site records a salary of $37,699, while the highest current recorded salary $85,017. Further complicating the picture, however, is that the term web developer can be used colloquially to encompass a wide variety of skill sets and job types. The more in vogue and descriptive terminologies of front end, back end, and full stack developer all yield substantially higher average salaries:

  • Average Front End Developer Salary: $67,591
  • Average Back End Developer Salary: $71,598
  • Average Full Stack Developer Salary: $73,837

Job Description Web Developer:
The term web developer is generally associated with the skillset of Front End Developers, who are tasked with developing and maintaining the front end (or client side) of websites and applications. In layman’s terms, a web developer is generally responsible for implementing the visual and interactive elements on a site, rather than the server-side application logic. Common responsibilities of web/front end developers include developing new user-facing features, building new and reusable code libraries for the future, building sites with an eye towards maintainability, speed, and scalability, collaborating with all stakeholders and team members, and often times interfacing with clients to ensure pages are performant and have the overall look desired by site owners.

Common hard skills of web developers

  • Knowledge of HTML, CSS, and Javascript
  • Knowledge of server side CSS preprocessors like SASS or LESS
  • Knowledge of design principles
  • Knowledge of — at least jQuery, but more likely an entire javascript application framework
  • Oftentimes some knowledge of a scripting language
  • Knowledge of common CMS such as Wordpress, Drupal, or Joomla

What Education do I need to Become a Web Developer:
Web development is, like many web-technology based fields, often more about results than your academic pedigree. Many web developers are self taught, or learn through bootcamps, books, and online resources. For many web development positions, there is often a noted lack of practical know how even from recent computer science graduates with the more common technologies online. For that reason, many web developers find themselves in positions largely by building their own portfolios or even working on side projects. That said, a bachelors degree in computer science, information technology, or information systems will likely inform future web developers of many of the underlying concepts and principles that can elevate their code to new levels, be that through quality design patterns, or the ability to talk about potential online creations in a more nuanced way to other team members. Being properly qualified for a given position often requires web developers to have experience in a given “stack” or grouping of frameworks, languages, and technologies that a given employer works with. Some of the more popular front end developer stacks are as follows:

  • LAMP: Linux/Apache/MySQL/PHP
  • MEAN: MongoDB/Express.js/AngularJS/Node.js
  • Ruby Stack: Ruby/Ruby on Rails/RVM (Ruby Virtual Machine)/MySQL/Apache/PHP
  • Django Stack: Python/Django/Apache/MySQL
  • Bitnami DevPack: PHP/Django/Ruby on Rails/Java/MySQL, PostgreSQL/Apache Tomcat

Web Developer Resources
Check out our ranking of the best online information technology bachelors degree programs.
Check out our ranking of the best online information systems bachelors degree programs.
Check out our guide on getting a computer science education for free with these 20 MOOCs.