Skip to main content

English fever and low self-esteem

Chinese may be learning English but they are not switching their medium to English—all higher education takes place in Chinese.
...
The obsession with English-medium education, particularly for technical and higher studies, is keeping millions of Indian children behind. The top business and professional schools in India remain English-based—their entrance exams are not only in English but specifically test English-language skills. A child in China, or for that matter, Japan or South Korea, does not have to deal with debilitating switch in medium to go to engineering, medical or business school.
...
it is worth remembering that only four of the richest 20 economies in the world, by highest per-capita income, are English-based. Universal education, not English-medium, is what gives China the advantage over India.
...
It is also a fallacy that our software success is built on knowledge of English. Israel’s population is half of Delhi’s, yet its software exports rival our own. It is true that many people in Israel do know English, though not many know it well. When I was a manager for Microsoft visiting my team in Haifa, I was surprised to find that the medium of communication—written and oral—within the Microsoft Israel office was Hebrew.
...
When I was working at Microsoft, Redmond, we flew software engineers from as far away as Russia for interviews. Some of these people did not speak a word of English—I interviewed them through interpreters and they were some of the best hires I made.

Yet, in India, we may overlook talent if we insist on conducting interviews for technical candidates only in English, rather than the language they would be most comfortable speaking. The goal—to evaluate them based on their technical proficiency, rather than their knowledge of English.

—Sankrant Sanu in Opportunities Beyond English article in Entrepreneur magazine, March 2010

When I discussed about the article with Heleena (about 1-year ago), she told me that it's not possible to change low self-esteemed Indians.

Comments

Popular posts from this blog

Converting PSD with PHP/ImageMagick

After seeing feature rich options in Imagick PECL extension at Mikko Koppanen 's (the author) website and also impressed with ImageMagick 's features, I have decided to use it for the PSD to XHTML conversion website that I'm architecting and managing. Since, the team wants programming help for converting PSD images, I have tried it (documentation is sparse on PSD handling) Converting PSD to PNG/JPEG/etc Note that, flattenImages() is needed for layered/multi-page PSD file. <?php $im = new Imagick('test.psd'); $im->flattenImages(); $im->setImageFormat('png'); $im->writeImage('test.png'); ?> Extracting PSD layers One by one <?php $im = new Imagick('test.psd'); $im->setImageFormat('png'); for ($i = 0, $num_layers = $im->getNumberImages(); $i $im->setImageIndex($i); $im->writeImage('layer' . $i . '.png'); } ?> Note that, there is a better version below In a single call with writeIm...

Save American College, Madurai

This post was written in 2008 and outdated now. For update, please check Save American College, Madurai (Update 2011) Update (2011-01-16) : Save American College, Madurai (Update 2011) I'm highly privileged to have 3 degrees (B.Sc. (Spl. Physics), PGDCA and MCA) from The American College, Madurai, South India . Unlike other "commercial" colleges, American College has given room for poor students and uplifted them. And unlike other "elite" colleges who'd give seat only for "intellectuals", American College has produced geniuses. In the recent months, the saddening thing is that the college is under divide (Principal Vs. Bishop). Here is the email I sent to alumnae lately informing about the informations that I received about the developments: Update (2011-01-16) : Save American College, Madurai (Update 2011) All: I was thinking that the " Save American College " campaign was a FUD . But, when I tried to understand the problem through my...

Interview question #2

This is related to PHP's array . An array has number of elements. All elements are integers and unique, which means there is no repetitive integers. (e.g.) $foo = array(7, 5, 9, 13, 2, 8); You have to sort the array, provided: You should scan the elements only once. You're not allowed to compare the elements when sorting. (i.e., you're not supposed to use any comparison operators) Sorted resultant array may not be the source array. How will you do that?