Skip to main content

The Fiscal Cliff for Higher Education - Next - The Chronicle of Higher Education

This column offers solutions with which I disagree, but it is thought-provoking.
The Fiscal Cliff for Higher Education - Next - The Chronicle of Higher Education: Moody’s notes that the number of students accepting admissions offers from colleges that the agency rates has been dropping at a fast clip since 2008. That comes even as those institutions are spending more to enroll those students. The trend, Moody’s said, is particularly serious at the lower-rated private colleges, “which are increasingly competing with lower-cost public colleges and feeling the most pressure to slow tuition increases and offer more tuition discounting.”
What bothers me is that online education is viewed as the savior of struggling campuses, not for pedagogical reasons but because online courses can generate revenue.
Southern New Hampshire could easily have been one of the many struggling small private colleges in the Northeast, but... it has transformed itself into a test-bed for ideas on the future of higher education, and in the process, has bolstered its bottom line. A highly successful online operation for working adults subsidizes a traditional residential undergraduate college for 18-year-olds
Or, as the article suggest, online will be used to out-source general education. Once you outsource any part of the experience, how can you justify the “brand” of any college or university?
There has been a lot of talk about how fragmented, simplified services on the Internet could replace the less tangible aspects that define the college experience. The best example of this are the commodity intro-level courses taught at nearly every college that could be supplemented or have the lectures largely replaced by online courses offered by some of the best institutions and instructors online. There are plenty of other examples of companies in Silicon Valley looking to take a piece of what traditional colleges are doing now. 
If a business outsourced its core function, eventually people (“customers”) would realize there is no value-add to the proposition. If you farm out general education, parents will start to ask if other courses are special or not. If not, why take them at your institution? Imagine the admissions office trying to explain, “Well, we don't teach basic math or composition courses, but we have great math and English departments. They just don’t teach our undergraduate core.”

I believe that we are going to see a period of consolidation and “standardization” that will reduce the lower-tier of higher education even further than it has already sunk.

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.