When writing the bit about OOP in python for beginners I slipped into a bit of a rant about what the majority of educators consider "teaching". I never had any problems with learning thanks to an almost eidetic memory and an IQ well in the range of lower genius. I did however always hate the inefficiency of the teaching materials and educational system that rested on their excuses, crafted to sound logical on a surface level and defendable on a level of fundamentals and principle as long as they can keep discussions in general terms instead of actual practical examples.
Excuse of an educator
It's unfortunate when educators rely on their past experiences as an excuse for not improving or modernizing their teaching methods. The idea should not be to perpetuate struggles they themselves faced but rather to learn from those challenges and make the process easier for the next iteration of learners - this is evolution, and it has not happened in a long time in most educational institutions (we are still using a system from the old greek 2000+ years ago - one person at the center preaching while the others crowd around to listen, no or minimal interactions otherwise, repeat)
Teaching vs. Regurgitating
Just because someone has knowledge doesn't necessarily mean they can teach it effectively. Truly understanding a subject involves being able to explain it in simple, not technical, terms and adapt the teaching method to the needs of the student with the worst foundation - which usually excludes any fancy language or superfluous latin/greek as a prerequisite for learning
The book is intended for an advanced audience, that's why the language used is "technical"
A book is an instrument to transmit knowledge. The author does not get to decide the audience, the audience gets defined by topic and circumstance. Authors can only ensure that their knowledge stays as widely accessible as possible through the use of the most basic and concise language available for transmission of knowledge or narrow the potential audience artificially beyond the natural limitations by using convoluted formulations, linguistic florishes that do not improve knowledge transmission, using technical terms where a general term can be substituted to solidify understanding, using terms before defining them at some later point of the work, starting with an explanation instead of a problem it solves, etc.
I do not have time to talk to every single student
A good excuse that professors and teachers alike usually come up with, is that they can not give attention to every single one of their students, after all they "also only have 24 hours in a day and need to relax sometimes".
On a surface level, noone would disagree with this right?
They are just human after all, right?
In essence, this is a problem of increased complexity that has been solved thousands of times already. One person can spend all their time teaching a single other person and raise them to a level similar to themselves.
If you introduce another person, the teaching person can now only spend 50/50 on each of the learners. Rais it to 4 and you got 25/25/25/25, etc.
At some point if you keep trying to use your original feedbackloop of "talk to x for y hours - then resolve" you will no longer achieve any satisfactory level of success in teaching even a single one of the group of learners.
Solution? Switch from detail-view to pattern-view. Assuming you are a professor with 500 students - you can build averages and extremes.
You do your job for one semester, you collect the questions and issues that pop up from your students, you look at your worst performers, you talk to drop-outs, you look at the average performance.
Next your task is to include what you learned was missing for the next semsters material. Your goal is to raise the average performance of your next class. Your 0-line is the worst performance you get.
If a semester performs worse than previous ones, do not tell yourself "oh well that was a bad batch", this is your new audience - your lecture will be catered to lead the next group of that quality to success by improving your lecture material to their level.
Did everything go just perfectly well for a semester? What can you cut away to reduce the burden further?
Don't believe that can be done? Interview with "Dr. Chuck" also known as Dr. Charles Severance from the University of Michigan School of Information. He is one of the few where my OCD over inefficiency was not triggered. He keeps experimenting to improve his ability to transmit his knowledge. There are others as well, but they, sadly, are the exception not the rule.
Why the hell would you use c++ for a class of beginners trying to learn programming? "But it has the full breadth of ..." - Yeah, so not anything for beginners who have not even developed any ability for algorithmic thinking. You use something like python that abstracts all the complex memory management, you do not start with OOP, you do not start with algorithmic complexity. You start with a puny little hello world. Then you show branching (if, elif, else), loops, functions, recursion, etc and that is a natural progression that works.
Bonus for the fact that printing hello world in python is this:
print('hello world')
instead of this in c++:
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}
or in java:
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
So which one of these lets you concentrate on how to learn to think algorithmically without forcing you to already know OOP and special lingo before you can even read and understand what happens here?
Exactly. Simplify and deliberately choose your tools to maximize a students ability to not be distracted be details that are not yet relevant for them.
There is a time and place for those, but it is not at the starting line.
Definition of a teachers responsibility
It is the teachers responsibility to break down complex concepts into digestible pieces that all students, regardless of their prior knowledge, can understand. The essence of good teaching is to transform the complicated into the straightforward. Just dropping a list of books, and boredly flipping through a power point presentation for 45 minutes does not cut it.
Definition of a students job:
The student must be willing to learn and once learned, willing to practice to convert knowledge into skill. No teacher can practice in place of the student and thereby raise the students skill.
'outsourcing' of responsibilities
Teaching should happen during class time and not be relegated to after-lecture hours. Teachers should not shirk their responsibility by merely assigning tasks. It is their job to explain and clarify.
Sadly, the majority of teaching personell (professors, teachers, coaches) move their own responsibility of researching the best way to learn and explain a thing to their student by calling it "Self-learning and Problem-Solving". They lighten their own workload and thereby change their occupation from someone teaching students to someone taking time from their students during class without any significant productive outcome before making them spend more time doing the thing that should have already happened during class.Keeping that time free for practice or to explore interesting concepts more in-depth would certainly be more in line with a students responsibilites.
Do not inflict the drain of time on your group of students with a half-assed "figure it out after the lecture".
The "Academically Challenged"
Students struggling with their academics are often suffering from a foundational knowledge deficit. A good teacher adapts their teaching strategies to the needs and abilities of individual students, and ensures nobody is left behind. The slowest person decides the pace of the group.
Of course this is hard for the teacher and makes things easier for all his students. Lets not sugarcoat it - this is a hard job if done right, it requires effort.
Unfortunately humans tend to want to avoid what is hard for them and not care if that makes it hard for others as long as the consequences of such actions are not too severe for the lazy person.
Relevance and Practicality:
The best way to engage students and make lessons stick is to tie them to practical use cases. If students understand why they're learning something and how it can be applied in real-life scenarios, they're more likely to remember it and feel motivated to learn. Simulate a "need" aka artificially create a problem that requires what you try to teach to solve the problem. You might even get suprised by a new solution sometimes which is the actual
self-learning and problem-solving so many use as an excuse to dump their job on their students.
Emergence of Nuance
Learning is a process that unfolds gradually, and nuances or advanced concepts should be introduced as the actual need for them arises - not in an introduction when learners still don't have a solid grasp of the basics.
Details fill in with practice, the need for differentiation and exactness will crop up on their own when confronted with relevant problems and use cases.