19

I had been programming for many years but wanted a diploma to make myself more employable. Having already been through university once, I didn't choose a full 5 year computer science major but a shorter, more practically-oriented software engineering program.

I expected that it might focus more on concrete skills than on theory, but still had this idea that universities and professors like things to be correct, formal, academic. It's still science, right? Wrong - I was surprised by how sloppy many IT courses were.

In an introductory course on C++ we were tested on clichés like "why are globals bad" and "why are constants good", after just writing 1-2 programs. Random anecdotes without proper context. Handouts contained system(pause/cls), getch and headers like conio.h and iodos.h. One of the tasks was to print "ASCII characters" from 32 to 255, with a screenshot showing such a table printed using the Windows-1252 code page, but without mentioning encoding at all.

Question: when a university/professor seems to be using inferior and/or outdated tools and methods, and the content being taught is borderline incorrect, how do you deal with it constructively and respectfully, if at all?

Some answers point out that you should look beyond the programming since it is just a tool for learning about topics such as data structures and algorithms. I agree with this idea, but in this case there wasn't really any such plan behind the poor style. Most courses would simply teach another "tool" without much background theory or any "big picture". It often felt like they were quickly put together just for the sake of offering such a course.


I stuck with it and finally graduated. Quality remained pretty low throughout (with a few great exceptions), and several other students have been complaining about it. As expected I have learned much more from personal projects and part-time jobs than from school, however the process of finishing school and the label "software student" seem mysteriously useful in themselves!

Toerndev
  • 325
  • 2
  • 6
  • 2
    Based on my own experience, You'll learn better, faster and cheaper studying programming on your own and getting help from forums. It's not uncommon for university syllabus to be outdated. In Russia, Pascal is still taught in some universities (though I like the language, and don't see that as entirely bad thing). – W.K.S Jun 28 '13 at 09:43
  • @W.K.S.: I think Pascal is a very good teaching language for learning about principles (of procedural programming) which are not outdated at all. University courses should not waste time teaching a particular programming language, but rather teaching paradigms (procedural, object-oriented, functional, logic, and so on). – Giorgio Aug 23 '14 at 21:03
  • Yes, of course @Giorgio, the programming language chosen as the teaching tool does not matter, however, one must expect that the programming practices presented are sound and up-to-date. – glampert Aug 24 '14 at 14:19
  • Most Universities teach undergraduates with the goal of allowing them to be successful in obtaining a masters degree. Most masters degree programs teach master students with the goal of allowing them to be successful in obtaining a PhD. Most PhD programs aim to help you become a successful researcher. – Rob P. Aug 24 '14 at 14:29
  • @glampert: Procedural programming has not changed after Pascal was introduced. Even better, Pascal was designed as a teaching language, so it does not have lots of hacks that may be useful in practice but are a big distraction when learning new stuff. So Pascal is up to date as far as teaching imperative programming is concerned. Of course, one might want to teach other paradigms like object-oriented, functional, logic: then you have to look for other languages, e.g. Python, Java, Haskell, Scheme, Prolog, ... – Giorgio Aug 24 '14 at 15:00

14 Answers14

34

Math and programming are totally different things. Math is science, programming is technique. In academic world, programming is something you have to know so that you could deal with the real stuff, the one that's actually interesting and matters - algorithms.

Who cares if the compiler is ancient and you use system calls? Who cares if you have Linux and not Windows? Well, the professors don't, that's for sure. And they shouldn't, really. Don't expect to become a professional programmer from courses in the academic institution. That's not what you go there for.

That's true that the compiler he's expecting you to use is ancient, and the assumption about the OS is anachronistic, and its problematic. You can raise it, and maybe it will be dealt with. But not because the course is incompatible with the industry, but rather because it causes an immediate difficulty to the students. Go find that old compiler now and have it running on your MacBook...

In general, academic studies shouldn't be wasted on learning C++ and Android, you should be learning the actual Computer Science stuff there. You won't get another chance for that. Android? Download Eclipse with the ADT and start working on it at home, like I do. Don't need school for that.

I think that it is not OK to expect technique development from the universities. Especially not the research universities. You can say that a place that only offers bachelors should be more industry-targeted, but research universities - want researchers. The professors are looking for prospective graduate students and PhD candidates, not excellent programmers. So I think you should set your level of expectations accordingly.

littleadv
  • 4,704
  • 27
  • 26
  • 3
    I have one issue with your response: "In general, academic studies shouldn't be wasted on learning C++ and Android, you should be learning the actual Computer Science stuff there." -- Without knowing at least the basics one programming language, the CS stuff doesn't make sense, and is far too easy to apply the wrong way. – Izkata Nov 03 '11 at 15:28
  • 1
    You say *"In academic world, programming is something you have to know so that you could deal with the real stuff, the one that's actually interesting and matters"* and then continue to say how it is OK for a Uni to have crappy programming courses. I'll re-highlight the quote **programming is something *you have to know* so that you could deal with the real stuff**. Since programming is not part of any prior education, Unis would do well to do a good job teaching it. (I'm not saying that it's exceptional they fail, but I think it is a shame.) – Martin Ba Nov 03 '11 at 16:01
  • 5
    @Martin and izkata - programming under DOS in C++ using compiler from the previous century doesn't mean you don't know programming. It just means you're using outdated tools - but if you need to implement RB trees - who cares? It's outdated for the industry, but the programs run and do what they're supposed to do - that's good enough. – littleadv Nov 03 '11 at 16:58
  • 2
    +1 well said! the university/college should focus on CS rather than some buzzword of today. Back then it was PDP-11/UNIX, today it is Android, tomorrow it will be something else - But pop() and push() will still be recognized with the stack and the NULL pointer will still need to be checked for nullity. – yati sagade Nov 03 '11 at 19:27
  • 1
    @littleadv _just_ being old is not implying that the compiler is bad. –  Nov 03 '11 at 19:51
  • outdated != bad, that's exactly my point. – littleadv Nov 03 '11 at 19:52
  • 1
    @littleadv - to me, the issue is that obsolete DOS-specifics are apparently being taught as if they were standard C++. That is misleading, and wastes time again when it has to be unlearned later. If they make it clear which are the non-portable tricks, that's probably OK. –  Nov 03 '11 at 20:01
  • @Steve314 - where did you get that impression from? Many compilers have additional libraries, the fact that the OP's Uni requires using a compiler with conio.h doesn't mean that "obsolete DOS-specifics are apparently being taught as if they were standard C++". – littleadv Nov 03 '11 at 20:09
  • 3
    @littleadv - the OP wrote "that seems ancient according to what I've read." which suggests to me that he had to look elsewhere than the relevant handouts to find out that this is obsolete and non-portable. Sure, many if not all compilers have extra non-standard libraries, but if you're taught those without being told they're non-standard I think that's bad - and that counts for new stuff as well as old, and even for C++11 stuff since for the moment C++03 is the most recent widely and fully supported standard. –  Nov 03 '11 at 20:19
  • @Steve314 - he was referring to conio.h, which is indeed obsolete and ancient for everyone who's not running in DOS mode. I don't know if it was pointed out in the OP's course or not, and frankly that wouldn't change my answer a bit. **It's good enough for the needs of a CS student**. It's not good enough for the needs of a professional programmer, no doubt. But that's not what the OP is. If that's what he's expecting to become after this course - **he** needs to adjust his expectations. – littleadv Nov 03 '11 at 20:50
  • 3
    @littleadv - Well, maybe we'll have to agree to disagree then. Though I would have thought a computer scientist needs to be a pedant about the details, and the few seconds it takes to point out that something is non-standard are both consistent with that and in no way a great hardship. How would you feel if a CS professor used his own ad-hoc notations mixed in with the math and didn't point that out? It is after all another aspect of the same issue - whether other computer scientists are able to understand you. Code is read by people as well as by compilers. –  Nov 03 '11 at 21:08
  • @Steve314 - I'm not sure I follow you thought. You're decided that something was not mentioned for no apparent reason and based on that you go on and make arguments. My question to you - why do you think that the OP was told that conio.h is part of the C++ standard? I couldn't find any suggestion of that sort in the original question or any of the comments. They just use an old compiler, probably to avoid licensing fees, and while at it use its supplemental libraries. So? What are you arguing against? – littleadv Nov 03 '11 at 21:18
  • 4
    @littleadv - I never claimed the OP was told conio.h is standard - I suggested he may not have been told it was non-standard, and even then said "If they make it clear which are the non-portable tricks, that's probably OK.". The way I was taught even basic science is that you use standard terms, or if you *must* use non-standard terms, you define what they mean. In my school science lessons, even using centimetres was against the rules - they're not SI units. Using non-standard libraries seems, to me, to be no different. The meaning of code in computer science should be unambiguous. –  Nov 03 '11 at 21:40
  • @Steve314 - that's nonsense. You wouldn't use boost? You wouldn't use BSD sockets? WINAPI? Ridiculous. If you want to troll - find another topic. Your reasoning has no standing. – littleadv Nov 03 '11 at 21:56
  • @littleadv - again, you're disproving claims I never made - those are beginning to look like intentional straw-man arguments, especially when you resort to accusations of trolling too. I would certainly use Boost, or whatever. However, wherever it wasn't immediately obvious, I would make clear that what I was using isn't part of the C++ standard. A simple statement that, for example, `system ("cls");` is a means to clear the command-line "screen" and that it's non-standard and non-portable is simple enough. Once you state what it means, it's not ambiguous. –  Nov 03 '11 at 23:17
  • @Steve314 - you clearly cannot explain your point. "*A simple statement that, for example, system ("cls"); is a means to clear the command-line "screen" and that it's non-standard and non-portable is simple enough.*" - why are you assuming that statement wasn't made? Why are you assuming that a claim has been made to the opposite? I fail entirely to understand what are you arguing and what are you basing your argument upon. Whatever it is, its irrelevant to the OP and my answer to the question, so I think we can stop now. – littleadv Nov 03 '11 at 23:24
  • 1
    Thank you for your reply. I think it's a bit unhelpful, assuming things about my expectations and telling me I'm wrong, or...? I expect to become professional only by having a job, thank you, but I don't have any job offers since I'm a translator/linguist and need a software-whatever diploma to even get interviews. It doesn't matter if I laugh at FizzBuzz, because I have nothing to show. I don't need professors to care about my OS but like @Steve314 said, as an expert I expect him to teach my beginner classmates that there exist things like a standard, non-portability and tricks. – Toerndev Nov 04 '11 at 00:34
  • @gaidal - beginners shouldn't care about these things. Things that Steve314 is talking about are NOT for beginners. Beginners should learn what an `if` is and how `while` works. When you get to the intermediate software engineering course - there you should be learning about standards, compliances, tools' selections, etc etc. Not in CS101. So my assumptions about your expectations seem to be correct. – littleadv Nov 04 '11 at 00:38
  • @littleadv Perhaps you are right and perhaps my expectations are off. I still don't think it's appropriate for a university professor not to care to point out such details, even while teaching if and while. I guess we're not going to agree about that. :) – Toerndev Nov 04 '11 at 00:49
19

Computer science is to programming what physics is to carpentry.

If you want to become a carpenter, studying physics is not going to make it happen. It will teach you a lot of interesting things, that you might be able to apply to your work, but it won't teach you how to be a good carpenter. For that, you will have to learn the craft of carpentry.

Similarly, if you want to become a good programmer, you will have to learn the craft of programming. Unfortunately, there's no institution to issue certification of any sorts. So basically, this is something you will have to do on your own, with whatever helping people you might be able to find. For you this means repetition and reflection. Write a lot of code and then come back to look at it. Also take time to read other people's code. Consider participating in open source projects.

Universities don't care much for programming and even less for details that will change within the next few years. What you see at your school is that they have picked some programming environment (a bad one, but that's not so important) and now show it to you, so that they will have a reference frame wherein they can teach you various programming techniques. One can argue, that the reference frame is poor and that even the language is a weird choice. From their perspective it probably doesn't matter, because it's quite arbitrarily chosen.

back2dos
  • 29,980
  • 3
  • 73
  • 114
  • 2
    How about Physics is to Engineering? Programmers should understand CS principles to apply them when designing programs they way an engineer needs to understand physics to design buildings, airplanes and chemical processes. – Jay Elston Nov 03 '11 at 14:36
  • 3
    @JayElston: Physics is to engineering, what Computer science is to software engineering, which comprises analysis, design, planning, implementation, QA, etc. Programming itself is really more the art of getting the material to do what you want it to do, whereas engineering starts at figuring out what it is that you actually want to do. – back2dos Nov 03 '11 at 14:52
  • I still like one of my professors' quotes "Engineering is the art of applying science to solve problems". – Chris O Nov 03 '11 at 19:44
  • 1
    @Chris: Perhaps, then, science is the art of creating new problems. – JasonTrue Nov 04 '11 at 01:19
  • @JasonTrue: Well, one could argue that science is the art of creating *better* problems ;) – back2dos Nov 04 '11 at 15:03
9

There's nothing wrong with learning 'DOS-style'. I'm sure many of the old-timers here started out on DOS, or even with earlier operating sytems, writing line-based programs, and have adjusted just fine. The computing world changes so quickly that I wouldnt get hung up on specifics such as which library was used for what.

Actually, I suspect the reason we have a world full of programmers who can tell you what dependency injection is, but struggle to answer FizzBuzz, is because a lot of programmers dont spend much time at that very basic level.

It sounds like this is an introduction to programming, so essentually, dont worry about it. Learn the basics, and you'll do fine. If you're interested in other platforms, explore them on your own. Thats the great thing about programming.

GrandmasterB
  • 37,990
  • 7
  • 78
  • 131
5

How you can deal with it? Download programming e-books or streaming videos, try the examples by yourself. Do not depend on your professors. Programming is highly learned on your own.

LEMUEL ADANE
  • 167
  • 5
  • 1
    Programming is like playing the piano. You need a master to teach you how to do things, and a lot of practice to do them well. I believe there is very few autodidact world famous pianists. –  Nov 03 '11 at 19:53
  • 7
    What a strange analogy, there are certainly many highly skilled autodidact programmers. – ocodo Nov 03 '11 at 23:34
  • @Slomojo True, and I've met a few of them. They are a strange breed, excellent at what they know. The difficultly lies in the breadth of problems they encounter. Occasionally, a problem has a much shorter path to solution when you know some corner of Computer Science, and yet, those talented folks tend to keep hammering at it the only way(s) they know, which eventually looks like brute force. An example, a problem that was "hard to solve" to a self-taught was solved by a DFA in two days, with testing (in TCL/TK to boot!). Two weeks later, they still didn't understand it, with explanation. – Edwin Buck Aug 25 '14 at 01:26
4

Well lot of universities have crappy programming professors. I went to one of the top grad schools in my country and pretty much learned squat in programming. I guess most unis are like that cause the really good programmers opt for better paying jobs(not teaching). You should take up a small project and try to code it yourself. You can get tips from a lot of forums such as this one. That might be a better way to learn in the long run.

Jan S
  • 149
  • 2
  • Good advice, of course, I totally agree. It's just the diploma... :) – Toerndev Nov 03 '11 at 09:22
  • @gaidal : Yup! that's what i got out of grad school - the brand name :P (though i'd hoped for much much more when i joined) – Jan S Nov 03 '11 at 10:30
  • 2
    University is not about learning to program, but about learning the concepts of programming languages and, more in general, of computer science. When I had to do my project for operating systems at university, I was told: it is going to be in C, the book is in the library, go get the book and learn it. Programming is about practice and it is not the task of the university to teach you that. – Giorgio Nov 03 '11 at 21:36
  • 1
    About better paid jobs that's true. A friend of mine who is teaching at the university once complained: "We teach them how to program and then they earn more than we do, it should be the other way around!" – Giorgio Nov 07 '11 at 21:33
3

I think that University should teach abstract concepts of programming languages, algorithms, etc and should not be the place where you learn programming: programming is a very practical activity and you can only learn it by doing.

During my study I learnt the basics of programming in Pascal, then I had one project in C (we had to learn the language by ourselves) and then I had a course on programming language concepts (procedural, object-oriented, functional, logic). It was folklore that on MSDOS you have conio.h or far pointers, which you do not have on a UNIX system. This was the stuff that we students would discuss over a beer, it was not something you discuss during the classes because it was not so important. University teaching focuses on the abstract, general knowledge and avoids going into the details: examples and details are presented just to illustrate the general stuff.

The example you gave about ASCII versus Unicode and the MSDOS conio.h library means just that every programming environment has its particular way of doing and organizing stuff. If you program in C++ on Visual Studio you will have to use other libraries, some of which are not found, e.g., on Linux. So if the course were in Windows 7 / Visual Studio some people might complain that it would be better to do it on Linux / GCC. But, IMO, this is not the point.

So, I think you should try not to get distracted by the details and concentrate on the general concepts that are being covered by the course. For example, that in most programming languages you will need some library to implement console I/O and that, given a programming environment, you will have to solve your problem with the tools you have at hand. Maybe this sounds quite obvious to you and you have the impression you're not really learning something because you already have some previous knowledge (this can happen) but I did not get the impression that you are attending a bad course.

Giorgio
  • 19,486
  • 16
  • 84
  • 135
  • Thank you, I will keep in mind then that you don't think it's enough to say it's a bad course. On a side-note, I didn't mean it ought to be in Linux, just that he could make an effort to inform students about the differences and that there is a standard. – Toerndev Nov 04 '11 at 01:32
  • I agree with you that it would be a good idea to inform about other systems. That also depends on the experience of the teacher: they might feel uncomfortable speaking about an environment they are not familiar with. E.g., I am at home with Windows and Linux, but I would avoid MacOS because, even it is may be a very cool OS, I have never used it. Maybe you could try and ask if they can give a short comparison between different C++ environments: just a few examples to get a feeling of what can be different and what remains the same. E.g. you could play with sizeof on MSDOS and Linux. – Giorgio Nov 04 '11 at 06:13
2

The universities are giving the foundations. Once it's strong, you can build skyscrapers on top of it.I have learned BASIC, C and C++ during my college days. Later when I did project in Visual C++, I believed it's an entirely different world. Later I realized the difference between Framework and Languages.

Choose a right university where they give the focused development of your desired computing field. Which can help you later in your career.

sarat
  • 1,121
  • 2
  • 11
  • 19
2

Printouts full of system(""); is actually a pretty damn good thing! I'm shocked that people don't know anything about these functions nowadays.

system("pause"), and you get rid of all gotchas of getX functions. system("cls"), and you just saved one page of code. system("mkdir foo") and you just saved 2 pages of buffer allocations, path splits, _makepath_ss, 256 path limits, ton of error exits and so on.

Moreover the code is so simple a monkey will understand it.

 if(!system("mkdir foo"))
     //booo and exit`

The school of polymorphic perversions is what should be banned by law.

P.S.: Moreover, with all due respect, I'm having hard time accepting that people are taught C++ with exceptions and virtual everything as a GOOD THING, because it has more gotchas and landmines than you can imagine, and even Bjarne Stroustrup evangelizes exceptions as something super easy and safe, while in reality they are a nuclear landmine.

See analysis about Misra-C++ and JSF-C++. And Link. I'm too lazy to find all the remaining articles today.

With all that being said, I'm c++ developer and I do enjoy a lot of features and the language as a whole.

Glorfindel
  • 3,137
  • 6
  • 25
  • 33
Coder
  • 6,958
  • 5
  • 37
  • 49
  • 1
    Not sure I'd agree that implicitly encouraging inexperienced developers to leap straight to system without any real idea of the gotchas is a good idea... – deworde Nov 04 '11 at 09:03
  • @deworde: It's the same thing you write in a console, I don't think you can make stuff less error prone and safe. – Coder Nov 05 '11 at 09:29
  • Yes, but when you write it in a console, you know (for example) where you are, who you're running as, what kind of machine you're running against and most importantly, WHY YOU'RE DOING IT. The program isn't necessarily aware of any of these things, and someone running the executable isn't going to know that they have to check them before running it. – deworde Nov 08 '11 at 14:10
  • @deworde: Not exactly, command EraseFile will still inherit the process permissions, so it's equally easy to mess up with either command. – Coder Nov 08 '11 at 17:00
1

My suggestion may sound out there, but hear me out... Switch majors.

In my experience in academia, the Computer Science major was a very low-level look at what makes computers tick. You started with a basic primer in C++ to make sure you know what a program was, and the basics of the memory and computation behind the program, and then you learned assembly, OS concepts, electrical engineering, digital design, etc etc. You get this degree and look for work with NVidia or AMD, or Lockheed; somewhere where they're making new hardware, which needs someone who can understand that hardware on a low-enough level to write the drivers and control software.

It sounds like what you want is a course of study that, at my university, was called Management of Information Systems. That's the course I followed; it taught programming in Java, VB.NET, C#, and some PHP and other web scripting along the way. It also required calculus (but not to the same degree as CS), accounting, finance, stats, business communication, O-O A&D, database design, and systems analysis. I got a BBA instead of a BS, and I had the basic tools to start work as a Windows or Web software developer.

What the "Computer Science" major prepares you to do depends highly on which university is offering it. It sounds like you're on an early path to get a very anachronistic, low-level look at computers that doesn't sound like what you're after out of your education. I urge you to look around in the university and find a course of study that's more focused on the type of computer work you'll want to get into after school.

No matter what, your course of study is going to start at very basic, "console-level" program writing. The language doesn't matter; what they're teaching you is basic procedural programming; how to think in small enough steps that the computer can follow you from step to step (because the computer takes nothing for granted, and can't follow most of a human's leaps in logic). From there, you will progress to object-oriented programming (instead of having one long function that does everything, it's much more maintainable to have several smaller code "objects", which represent the state and logic of real-world objects), then to event-driven programming ("Don't call us, we'll call you"; your program basically starts up, tells the OS to set up your initial graphic UI, and then sits and waits for the OS to pass in user input via a message loop), etc etc.

KeithS
  • 21,994
  • 6
  • 52
  • 79
  • Thank you, yes I'll consider that. If I feel it's going in the wrong direction I can change later, basic courses should be compatible between universes. – Toerndev Nov 04 '11 at 01:41
  • Careful with that assumption; I changed majors from CS to MIS, and none of the math I'd already taken transferred because the business school had a completely separate math track. English, sciences, humanities, yeah that transferred. – KeithS Mar 08 '12 at 18:51
1

Computer Science courses will not teach you programming. This is a walk in the park compared to some of the programming I've done on my CS course.

The fundamental problem with this, in my experience, is that there's pretty much nowhere that will teach you programming at an equivalent level, so you have no choice whatsoever.

DeadMG
  • 36,794
  • 8
  • 70
  • 139
0

I think there may be some confusion about what and why you're studying.

It appears as though you are studying an introductory computer science program. This is aimed at people with minimal experience who are learning the basics on how computers work at a low level.

It also appears that you are a semi-serious or professional programmer. You have been programming for 10 years, and are comfortable in 3 languages. It sounds like you know what you're doing at least enough to work as part of a team. Do you feel out of place in this course? Do the other students have a similar level of experience or skill as you do?

What are you intending to get out of this course?

Are you just after that 'piece of paper'? If this is the case then don't stop trying to get a job while you study. Apply for jobs, tell them you're a competent programmer and you're studying because you need the piece of paper to get a job. If they hire you then consider dropping out - once you have a professional job then you really don't need that piece of paper anymore. Accept a lower than normal wage, because it's better to be paid to learn (on the job) than to pay to learn at school - and you'll learn faster, too. After a year or two you'll be mostly up to speed, and then you can ask for a decent pay raise or you can go find yourself a another job because you'll have experience.

Or are you trying to learn something? Then stop judging your professor. Like a memorable high school teacher used to say 'SIT DOWN, AND SHUT UP.' It's almost guaranteed that the professor has immeasurably more experience and knowledge than you do and you could learn an awful lot from him. If he's going too slow for you then try to get credit for these introductory courses based on your prior learning and experience.

But are you in the right course? You could also learn a lot from the literature professor, or a history professor... not particularly relevant. Perhaps you don't want 'computer science' but instead want more practical, 'real world' skills. Try 'software engineering'. Look at other institutions for a more focused course.

Just like when you start a new job, a class or course of study can be very hard to review from the outside. You seem to be in a course that isn't giving you what you expect. Reconsider your options.

Kirk Broadhurst
  • 4,199
  • 18
  • 27
  • Thank you, I have thought about this and think you're very right about these two options. The former is more true for me, and I will look for jobs while waiting to see if the courses get more interesting. It *is* actually a software engineering education, that I chose over computer science since I want to get up to speed sooner and learn through working. Perhaps that explains why I expected a bit more 'real world skills'. :) – Toerndev Nov 19 '11 at 09:18
  • Just a few remarks from my university past: I studied a course where we had the "programming 101" on the schedule, that part was annoyingly boring for me. But other courses were interesting (physics, mechanics, ...) so even if a lecture is boring that might not apply to the whole program and for the other parts it might be worth going through the pain. But I dropped out. Meanwhile I learned that *sometimes* that paper would have been beneficial even though the paper doesn't mean I'd be any better in my job (I have a nice job, good salary, ... so it's not bad ;-) ) – johannes Nov 19 '11 at 16:14
0

I thought a lot of the answers to this question were disappointing. They went back to the tired old argument about CS vs Programming etc. That may be so, but it sounds to me like the course the OP is on isn't teaching either.

I was in the situation of having already worked as a programmer, and studied quite a bit by myself, before studying CS part-time at college. I shopped around carefully, but generally found the curriculum to be a waste of time. Also they wouldn't let me skip courses despite already having professional experience in the area.

In my experience a significant proportion of professors are pretty lazy and using an outdated curriculum. Honestly it sounds like you are wasting your time. I question even whether completing the diploma will help you find a job.

I doubt you can do much to change things about your course. You can either supplement it with study by yourself. Or just forget the whole thing, and study CS independently, and do some industry certifications as well.

I should add that I have no idea about the value of the diploma in your country's job market. If the diploma itself is valuable despite the content, then you may just have to put up with a curriculum that is somewhat lacking.

Antonio2011a
  • 1,209
  • 10
  • 16
  • Didn't see this before. I'm glad to see someone say exactly what I was feeling about some answers (your first paragraph)! Yes the teaching is rather useless, I don't attend the classes anymore but just turn in the programs I need to write. I do it my own way (which is usually pretty bad, coming from CL to C++), encounter lots of things not in the curriculum, and ask programmer friends rather than the professor for advice. This way it's actually kind of fun. Still hope I can find a job before graduating though. – Toerndev Dec 02 '11 at 06:24
0

They have to cater to the students. Most students can't program. So they're not pushed to go technical there.

They have their own specialised areas of research too, but they're not teaching that. And anyhow many researchers are not good teachers anyway, so you could consider yourself lucky if they're teaching stuff you already know!

Anyhow, you don't seem to know what computer science is. It's not about what's practical for industry.

barlop
  • 101
  • 3
-5

I would ask (and then insist) to return your assignments in standard c++. This is entirely reasonable since you are unable to complete the assignments otherwise.

As for the bad style; there will inevitably be some of this to begin with. Learning to use the standard io library properly requires quite a few advanced c++ features, in particular templates and iterators. I can see why a lecturer would get you using very simple io functions to start with. I wouldn't be afraid to ask about this though, it shows enthusiasm and a bit of light in your eyes. Your lecturer should be able to weave your question into a future lecture where you (hopefully) put right your early exercises.

I would leave it at that though. Even though c++ can be a platform independent language, it frequently isn't. Learning some Windows system functions is not a bad thing, particularly if you then train yourself into doing it by the standard. You will at some point come across conio.h when looking at other peoples code - and its good to know what it does.

Tom
  • 125
  • 2
  • 10
    no, you are given tools to do the job, and it's your job to use those tools. If you have a job where all you have is a 15 year old XT running CP/M, demanding they accept your 64 bit Windows 7 code isn't going to work either, best get used to that as early as possible. – jwenting Nov 03 '11 at 11:45
  • 1
    @Tom - We don't know the reasons the professor is teaching in the way he is. It also sounds like the author is not very experienced. – Ramhound Nov 03 '11 at 13:31
  • 2
    @Ramhound A university should make it possible to complete the course without having to purchase expensive equipment (such as Windows Operating system). Its prejudicial. – Tom Nov 03 '11 at 13:51
  • 3
    @Tom, If I were teaching Photoshop I would expect you to buy Photoshop (which is very expensive) and I'd expect you to buy textbooks which are expensive, I don't see where this is different. And I'll bet there are lots of computers on campus he could use for the task without buying Windows (which frankly anyone studying CS should probably have both anyway, you never know where you'll end up, people programming the in the Microsoft stack of products don't tend to use Linux.) – HLGEM Nov 03 '11 at 15:49
  • 3
    @Ramhound Even if the professor hasn't explicitly said why he's using simplified dos based IO routines we can probably make a correct guess. As Tom mentioned C++'s io routines are relatively complex so hiding detail isn't unreasonable in an intro level course. The decision to use a windows based platform specific library instead of a *nix based one almost certainly comes down to the assumptions that most students are using windows not *nix, and that more windows users would struggle getting started with *nix than vice versa. – Dan Is Fiddling By Firelight Nov 03 '11 at 17:58
  • @Tom: Microsoft gives Windows away for free to students, not to mention that Windows is by far and away the most dominant operating system for consumers anyway, and the overwhelming probability is that the university provides Windows-based machines. – DeadMG Nov 03 '11 at 20:00
  • @DeadMG "*Microsoft gives Windows away for free to students*" - where? Not in my school. – littleadv Nov 03 '11 at 21:24
  • @littleadv I know DreamSpark has the server operating systems available for free. IIRC it simply requires a *.edu email address (in other words: I don't think the school has to explicitly participate in the DreamSpark program.) Also your school may participate in MSDN-AA, which offers Windows (professional editions), free of charge, to the students/faculty, licensed per semester. – Robbie Nov 03 '11 at 21:47
  • @Robbie.... *.edu email address? Oh, you're an Amerrican... Well, there's a whole world outside of the US. The OP is from China. – littleadv Nov 03 '11 at 21:58
  • @littleadv: Mine neither, but they did give student discounts. – dan04 Nov 04 '11 at 04:33
  • 1
    @jwenting, well what if the you took a 64-bit Windows 7 development job, then you're asked to work with that XT running CP/M (whatever that is)? :) Anyway I think this answer is peaceful and reasonable for a course on C++ and it doesn't deserve being downvoted. It's not like Tom's encouraging me to return assignments with QNX system calls just to be rebellious, just standard C++. Aren't standards there for a reason? – Toerndev Nov 04 '11 at 05:06
  • 5
    @gaidal - rules are there for a reason. If you start working somewhere and decide that instead of proprietary library you're going to use standard because "standards are there for a reason" - you'll find yourself unemployed really quickly. Take this course as a coding standards compliance exercise. You're not going to like those always. – littleadv Nov 04 '11 at 05:35
  • @gaidal you're never hired explicitly for a 'window 7 64 bit development job', you're hired for a development job. And that job may require you to do all kinds of things. My first job I was hired for my knowledge of Delphi, I ended up writing Cobol. Could have told them I would do it in Delphi, but that'd not have been appreciated to say the least... – jwenting Nov 04 '11 at 06:47
  • @littleadv: They operate a program called "MSDNAA". I didn't pay for or steal my copy of Windows 7 64bit Ultimate. As for Dreamspark, you can "authenticate from e-mail" or something like that- it accepted my .ac.uk e-mail address. – DeadMG Nov 06 '11 at 20:08