Skip to main content

linguistics - What makes a non-native English speaker sound foreign?



I'm not a native speaker. However, I have tried a lot during last 10 years to learn English at a high level of proficiency and to become fluent in conversation.


However, when I talk to some of my friends in US over Skype (found via my profession), they tell me that I talk like a foreigner. But they don't know why is that.


What is/are the reasons that can make a not-native English speaker sound like a foreigner? Is it about pronunciation, or about syntax, or is it maybe just a false assumption coming from a psychological background due to the fact that the other party knows that you are not an English man/woman.


Update: I asked this question specifically about English, since English is the most widespread language on the earth and tens of different dialects and millions of different idiolects seem to alleviate the problem of "sounding-foreign".



Answer



Obviously without hearing an example, it's only possible to talk in generalities. In terms of syntax and vocabulary, even if you don't produce any utterances that are ungrammatical per se, you might give yourself away by not using features (e.g. filler words/pharses like "you know", "though", "actually") that are common in native speech, or by using features not common to the spoken register (e.g. overuse of non-contracted forms).


In terms of pronunciation, native speakers are tuned to all sorts of fine phonetic detail. So even if, say, the quality of your vowels is very close to that of a native speaker, you could give yourself away by other subtle clues: e.g. subtle differences in the duration of sounds, having different patters of Voice Onset Time to native speakers, not glottalising vowels before a syllable-final voiceless consonant, not overlapping segments of consonant clusters such as [kt] in the same way as native speakers of English, to mention some common phenomena that tend to differ between English and other languages but not so much within accents of English and which can give an accent away as "foreign". But really there are virtually too many possible subtle differences to mention, and surely some that haven't been systematically studied.


Comments

Popular posts from this blog

Is there a word/phrase for "unperformant"?

As a software engineer, I need to sometimes describe a piece of code as something that lacks performance or was not written with performance in mind. Example: This kind of coding style leads to unmaintainable and unperformant code. Based on my Google searches, this isn't a real word. What is the correct way to describe this? EDIT My usage of "performance" here is in regard to speed and efficiency. For example, the better the performance of code the faster the application runs. My question and example target the negative definition, which is in reference to preventing inefficient coding practices. Answer This kind of coding style leads to unmaintainable and unperformant code. In my opinion, reads more easily as: This coding style leads to unmaintainable and poorly performing code. The key to well-written documentation and reports lies in ease of understanding. Adding poorly understood words such as performant decreases that ease. In addressing the use of such a poorly ...

A man has a garden measuring 84 meters by 56 meters. He divides it into the minimum number of square plots. What is the length of the square plots?

We wish to divide this man's garden into the minimum number of square plots possible. A square has all four sides with the same length.Our garden is a rectangle, so the answer is clearly not 1 square plot. If we choose the wrong length for our squares, we may end up with missing holes or we may not be able to fit our squares inside the garden. So we have 84 meters in one direction and 56 meters in the other direction. When we start dividing the garden in square plots, we are "filling" those lengths in their respective directions. At each direction, there must be an integer number of squares (otherwise, we get holes or we leave the garden), so that all the square plots fill up the garden nicely. Thus, our job here is to find the greatest common divisor of 84 and 56. For this, we prime factor both of them: `56 = 2*2*2*7` `84 = 2*2*3*7` We can see that the prime factors and multiplicities in common are `2*2*7 = 28` . This is the desired length of the square plots. If you wi...