Skip to main content

Can Anything Be Taught Online?

One of the questions facing colleges and universities is "Can Anything Be Taught Online?"
The simple answer is, no. But some of almost every topic can be taught online. I ask the question, "How Much of Topic X Can Be Online?"

When an institution wants to take a topic online, it should ask the following:
  • How much of the course content will work online, in the time allotted? 
  • How will that content be delivered? 
  • How will knowledge and skills be evaluated?
  • What technologies will be required?
  • Do potential students have access to the needed technology?

While a school cannot have a veterinary surgery practicum online, they can provide simulations and much of the background material leading up to the physical practicum. Someday in my lifetime I imagine "robot-assisted" surgeries will be common. (They exist now, but are limited to a few procedures and there are physicians present.) Still, I'd want a surgeon to have performed "real" surgery, in case the robot needs to reboot.

We all watch plenty of experts without learning how to do what they do. That's one of the problems with non-interactive video or audio instructions. You need to do things to master them.

I tell my students that watching the Food Network for years has not made me better cook. What would help is following along in my kitchen and having real people test my real food. Most of us listen to music and watch performances, yet I don't know anyone who learned to play guitar simply watching Keith Richards. Watching isn't enough. You have to do what you want to master.

It is my personal conviction that we can teach most foundational knowledge and many skills online. We can even evaluate many tasks online, assuming the student has access to the appropriate technology. Yet, there are some things we cannot evaluate online.

No culinary course could evaluate what I cook at home. But, I could videotape myself playing an instrument for a music course. It is a matter of what is being learned and how it will be evaluated.
The best online education programs recognize that effective teaching of some topics requires a serious investment in technology and training.

To teach music, you would need video and audio production capabilities for the instructors. Yes, you could use pre-recorded lessons, but most instructors have a personalized style. Plus, a teacher could demonstrate specific skills that a students needs help mastering. Pre-packed content should supplement, not replace, the course instructor.

Some topics are technologically "easier" to teach online, while these same topics might also be "harder" to teach due to the evaluation method required. I can teach basic writing skills online, but grading essays takes much longer than grading math or science quizzes. Yet, the science or math teacher might need more technology to prepare lessons.

If even 50 percent of standard course content can be online, why not put it there? For "traditional" on-campus courses, having documents, handouts, practice quizzes, audio, and video online is a great idea. It takes time, expertise, and money, but the long-term payoff is a library of reusable content. Then, instructors teaching online and on-campus can focus on the needs of each class section and each student.

Personally, I do hope to have most of my course content online in a few short years. It will require time and effort, but it will help my students for years to come.

Comments

Popular posts from this blog

MarsEdit and Blogging

MarsEdit (Photo credit: Wikipedia ) Mailing posts to blogs, a practice I adopted in 2005, allows a blogger like me to store copies of draft posts within email. If Blogger , WordPress, or the blogging platform of the moment crashes or for some other reason eats my posts, at least I have the original drafts of most entries. I find having such a nicely organized archive convenient — much easier than remembering to archive posts from Blogger or WordPress to my computer. With this post, I am testing MarsEdit from Red Sweater Software based on recent reviews, including an overview on 9to5Mac . Composing posts an email offers a fast way to prepare draft blogs, but the email does not always work well if you want to include basic formatting, images, and links to online resources. Submitting to Blogger via Apple Mail often produced complex HTML with unnecessary font and paragraph formatting styles. Problems with rich text led me to convert blog entries to plaintext in Apple Mail

Learning to Program

Late last night I installed the update to Apple's OS X programming tool suite, Xcode 4. This summer, in my "free" time I intend to work my way through my old copy of Teach Yourself C and the several Objective-C books I own. While I do play with various languages and tools, from AppleScript to PHP, I've never managed to master Objective-C — which is something I want to do. As I've written several times, knowing simple coding techniques is a practical skill and one that helps learn problem solving strategies. Even my use of AppleScript and Visual Basic for Applications (VBA) on a regular basis helps remind me to tackle problems in distinct steps, with clear objectives from step to step. There are many free programming tools that students should be encouraged to try. On OS X, the first two tools I suggest to non-technical students are Automator and AppleScript. These tools allow you to automate tasks on OS X, similar to the batch files of DOS or the macros of Wor

Learning to Code: Comments Count

I like comments in computer programming source code. I've never been the programmer to claim, "My code doesn't need comments." Maybe it is because I've always worked on so many projects that I need comments  to remind me what I was thinking when I entered the source code into the text editor. Most programmers end up in a similar situation. They look at a function and wonder, "Why did I do it this way?" Tangent : I also like comments in my "human" writing projects. One of the sad consequences of moving to digital media is that we might lose all the little marginalia authors and editors leave on manuscript drafts. That thought, the desire to preserve my notes, is worthy of its own blog post — so watch for a post on writing software and notes. Here are my rules for comments: Source code files should begin with identifying comments and an update log. Functions, subroutines, and blocks of code should have at least one descriptive comment.