Universities have bogus students shock

I’m shocked, shocked to find that gambling is going on in [this casino]! (Captain Renault, Casablanca, 1942)

The UK Border Agency has finally acted to revoke London Metropolitan University’s “Highly Trusted Sponsor” status, which allowed them to grant student visas.

This is very tough luck on the genuine foreign students that happened to be doing a course there when the music stopped, and my sympathies are with them. But this system has been living on borrowed time for far too long. As far as I can make out, London Met is no better or worse than any others, and according to staff there who I’d tend to trust, has actually tightened up considerably after the first complaints and is probably less deserving of a foreclosure than most. There but for the grace of God go all the others.

Back in the late 1990’s the then New Labour government decided that everyone should have the chance to get a university education, so created a lot more university places by creating a lot more universities (and introduced student loans and tuition fees to pay for it). The snag is that tuition fees don’t cover the cost and the new universities don’t have their own income, so the only way to expand and prosper is to attract foreign students, whom you can charge what you like. Other than academic integrity, commercially:

  • There is no incentive to ensure that the students are pre-qualified (or even speak enough English to cope).
  • There is no incentive to ensure that students would benefit from the course.
  • There is no incentive to ensure standards are maintained (if you fail too many, they’ll go elsewhere).
  • There is no incentive to ensure that student’s paperwork is genuine.
  • There is no incentive to ensure that students actually attend the course.
  • There is an incentive to keep quiet, because there are academic jobs are on the line.

With a system where every incentive is to create abuses such as this, who can be surprised when they happen. Don’t forget, these universities are run as businesses with business managers – they’re not run by the academic staff.

I’d be very surprised if London Met was the only university to receive this attention in due course. It’s not that anyone deliberately set out to pull a fast one, but if the incentives are stacked the way they are then you’re going to get a culture of looking the other way.

The Border’s Agency investigation found that in a sample of 250 students at London Met, 25% had no valid visa, 56% had “attendance problems”, and 40% couldn’t speak English well enough to do such a course. But the same system also encourages universities to sign up domestic students and not fail too many, as this is the basis on which they’re funded. They’re paid for each student who completes the course (a lesser amount if they drop out), and students make a terrible fuss if they fail to pass and tell all their friends to avoid the place, reducing intake. If  standards are ever questioned, you’ll find plenty of academics willing to appear on camera to say otherwise, and what else could they do if they want to maintain the status quo (i.e. their jobs). But the incentive is to push standards lower.

It’s very frustrating for those working in higher education for fight against this tide, and ultimately it’s doing the country no good. It’s described as a great export earner – do we really want to be exporters of dodgy degrees? The UK Border Agency’s move is a good first step to stop the rot, but it seems to me that London Met is the scapegoat and what’s really needed is a good long look at the whole system starting at the top. This correct course of action isn’t likely to be a vote-winner with the students.

 

What is to become of Computer Science?

When people ask what I do, I normally say I work with computers. “Ah,” they say. “You’re in IT. My nephew is in the same line.” Well actually, no – I don’t do IT and I don’t do the modern version: ICT. I was around long before these terms were coined, and they really don’t apply. IT is all about setting up Windows and writing Macros in Excel (if you’re advanced).  If I say I’m a computer programmer it’s assumed I’m a “web developer”. System programmer doesn’t mean anything to most people; assembler programmer even less.

Then a few years ago I realised what I was – I’m a Computer Scientist. Well I lecture on Computer Science degree courses, ergo I must be. Actually this antiquated term is very appropriate for an antiquated computer person, and if the hat fits…

Back in the 1970’s and early 1980’s we were all Computer Scientists. If you wanted a computer you pretty much had to build it yourself with a soldering iron and a load of chips and when complete, you had to program it. If your employer purchased one of these expensive items ready built, you still had to program it yourself – unless you were an operator, in which case you merely had to understand it. You learned a lot in the process, if you were that way inclined.

These days people want a career in IT, so they do Computer Science courses at University. They’re wasting their time. They learn very little from the university about computer science, and the university is perfectly happy with that. The way computers work is difficult; difficult means expensive to teach and certain to put off students. If you put off students, you get less money. So you need to teach easy stuff.

Easy stuff in Computer Science basically comes down to playing around with luser-land software, animation packages and an SQL query or two – but not too hard. Perhaps write a bit of HTML by hand before moving on to some web page design package or CMS.

Here’s the conundrum.

Students = money, but only if they stay the course.

A low pass rate = Less students want to do the course.

Without lots of students passing the course, you don’t get enough money and everyone loses their job.

Computer programming is difficult. Most IT students can’t hack it. Therefore it has to be dumbed down to an extent you’d never believe. Those with the aptitude could program before they came on the course; those without it would never learn.

Please generate and paste your ad code here. If left empty, the ad location will be highlighted on your blog pages with a reminder to enter your code. Mid-Post

In 2009 the university I taught programming at decided that the need to pass the programming module was affecting their overall pass rate, so they made it optional. Yes folks – you can get a Computer Science degree without being able to write a single line of code. I’d name names here, but I understand this is common practice at many institutions, so what’s the point?

Now I’m not saying I’m unique or even special in understanding how computers work. There are plenty of others of my generation that know as much, if not more. What I’m wondering about is what happens when our generation retires? It’s not possible to go through the learning process we had back then – learning by tinkering and doing (because frankly, the education system was nowhere near the leading edge back then either).

I believe there was a sweet spot at the end of the 1970’s, where microprocessors had just appeared on the scene and you had to understand things from first principles if you wanted to do anything with them. If you didn’t have to construct a machine yourself, you certainly needed to program it if you wanted it to do anything – and they were simple enough back then that this was a realistic possibility.

Sitting in front of a modern Windows PC is not the same experience at all. With a PET/Apple/Tandy computer you turned it on and the first thing you saw was a prompt to start entering your program in BASIC. You lived in a programming environment. With CP/M it was only a few keystrokes away. Now we’re presented with a graphic user interface and no programming language whatsoever – just Facebook. The complexity of the Windows API is daunting; more so given that everyone thinks its cool to write stuff using the current favourite object-oriented wrapper library. In order to achieve anything looking like a modern computer program (where the graphic user interface is everything) you have to jump through numerous hoops before you can get started. If I complain, I’m pointed at the application generator – it’ll write most of the code for me, apparently. If you ask what the reams of generated preamble code it actually produces is for, people just shrug their shoulders and ask why you’re questioning it.

In 1998 I found myself writing a system-level utility for Windows inside a large company, and needed to sort an array into alphabetical order. I don’t think there’s a Windows API function, and qsort seemed to be missing from the library, so I consulted the lead Windows programmer across the room. The answer came back to put my strings (one by one) into this file selector structure (as file name), make some call or other to the file selector box and presto – my strings would come back sorted. No, he wasn’t joking. Two minutes later I’d written bubble-sort, for the umpteenth time.

This was thirteen years ago; how much has it deteriorated since then? I’m lucky to be developing software either solo, or with a developer of my generation, so I’m probably insulated against the worst excesses.

So, back to the point: where are we going to get Computer Scientists from? I started on the sweet spot, where it was possible to learn pretty much everything about the computer in front of you – every instruction, every I/O register, and every line of the operating system. As computers expanded, our knowledge expanded, but could rest  on these early foundations. We can’t do that any more. If we ran a three-year degree course in computing and started from the basics you’d end up with me someone whose knowledge was wide enough to cover a BBC Micro. They’d need another twenty-seven years after that to reach the modern era, and by the time they qualified they’d be thirty years out-of-date.

And why should anyone even bother? I can assure you, there’s more money to be made out of IT than Computer Science. The only decent return available if you understand computer fundamentals appears to come from cyber-crime, and even then that’s as  perpetrator; no one wants to pay for security.

I’m told that the government plans to bring back an element of programming into the ‘O’ level maths (or its modern equivalent). This is a start, but a small one.

In the mean time I’m watching the other members of the OS/2 drinking club fall away and wondering what is to become of us. The draw of Bletchley Park grows every stronger.