Grammar question
-
Which is correct: There is a total of 20 women and children here. There are a total of 20 women and children here. Both sound OK to me. Thanks.
My latest C# extension method: public static bool In<T>(this T value, params T[] values) { return values.Any(v => v.Equals(value)); } Example: bool valid = answer.In("Yes", "No", "Dunno");
-
Which is correct: There is a total of 20 women and children here. There are a total of 20 women and children here. Both sound OK to me. Thanks.
My latest C# extension method: public static bool In<T>(this T value, params T[] values) { return values.Any(v => v.Equals(value)); } Example: bool valid = answer.In("Yes", "No", "Dunno");
Is refers to the singular and are refers to the plural. There is a group of 20 women and children here or There are 20 women and children here
Need a C# Consultant? I'm available.
Happiness in intelligent people is the rarest thing I know. -- Ernest Hemingway -
Which is correct: There is a total of 20 women and children here. There are a total of 20 women and children here. Both sound OK to me. Thanks.
My latest C# extension method: public static bool In<T>(this T value, params T[] values) { return values.Any(v => v.Equals(value)); } Example: bool valid = answer.In("Yes", "No", "Dunno");
They're both correct. The meanings are slightly different. With "There is a total..." the subject is "a total", which is singular. With "There are a total..." the subject is "20 women and children", which is plural.
-
Is refers to the singular and are refers to the plural. There is a group of 20 women and children here or There are 20 women and children here
Need a C# Consultant? I'm available.
Happiness in intelligent people is the rarest thing I know. -- Ernest HemingwayEnnis Ray Lynch, Jr. wrote:
Is refers to the singular and are refers to the plural.
That much I knew. But somehow "There are a total of ..." sounded a little better. After hearing enough people say it that way, I wasn't sure. But yeah, now I realize that the verb is referring to one thing: "a total".
My latest C# extension method: public static bool In<T>(this T value, params T[] values) { return values.Any(v => v.Equals(value)); } Example: bool valid = answer.In("Yes", "No", "Dunno");
-
Which is correct: There is a total of 20 women and children here. There are a total of 20 women and children here. Both sound OK to me. Thanks.
My latest C# extension method: public static bool In<T>(this T value, params T[] values) { return values.Any(v => v.Equals(value)); } Example: bool valid = answer.In("Yes", "No", "Dunno");
Ennis is correct. However, Strunk would likely tell you to omit the "a total of" part altogether.
-
Which is correct: There is a total of 20 women and children here. There are a total of 20 women and children here. Both sound OK to me. Thanks.
My latest C# extension method: public static bool In<T>(this T value, params T[] values) { return values.Any(v => v.Equals(value)); } Example: bool valid = answer.In("Yes", "No", "Dunno");
The grammar is simple for most languages I know*: the verb should match the subject; both should be singular or both should be plural. "There is a total of 20 women..." is correct because "total" (a singular set) is the subject. "There are 20 women..." is correct because "women" (a plural set) is the subject. "There are a total of 20 women..." and "There is 20 women..." are both wrong because the subjects and the verbs are in different numbers. * that's Portuguese, Spanish, English and some French and German.
Of all forms of sexual aberration, the most unnatural is abstinence.
-
They're both correct. The meanings are slightly different. With "There is a total..." the subject is "a total", which is singular. With "There are a total..." the subject is "20 women and children", which is plural.
Alan Balkany wrote:
With "There are a total..." the subject is "20 women and children"
:confused: If "women and children" is the subject then what role does "total" play in the phrase?
Of all forms of sexual aberration, the most unnatural is abstinence.
-
Which is correct: There is a total of 20 women and children here. There are a total of 20 women and children here. Both sound OK to me. Thanks.
My latest C# extension method: public static bool In<T>(this T value, params T[] values) { return values.Any(v => v.Equals(value)); } Example: bool valid = answer.In("Yes", "No", "Dunno");
-
Which is correct: There is a total of 20 women and children here. There are a total of 20 women and children here. Both sound OK to me. Thanks.
My latest C# extension method: public static bool In<T>(this T value, params T[] values) { return values.Any(v => v.Equals(value)); } Example: bool valid = answer.In("Yes", "No", "Dunno");
-
Ennis Ray Lynch, Jr. wrote:
Is refers to the singular and are refers to the plural.
That much I knew. But somehow "There are a total of ..." sounded a little better. After hearing enough people say it that way, I wasn't sure. But yeah, now I realize that the verb is referring to one thing: "a total".
My latest C# extension method: public static bool In<T>(this T value, params T[] values) { return values.Any(v => v.Equals(value)); } Example: bool valid = answer.In("Yes", "No", "Dunno");
The word "total" is the subject that must agree with the verb. Some words (such as "majority") can be singular or plural, depending on context. Ex: The majority of the people are here. The majority of the pie is eaten. I don't think the word total is ever plural. You would always say, "The total is [blank]" and never "The total are [blank]"
-
Which is correct: There is a total of 20 women and children here. There are a total of 20 women and children here. Both sound OK to me. Thanks.
My latest C# extension method: public static bool In<T>(this T value, params T[] values) { return values.Any(v => v.Equals(value)); } Example: bool valid = answer.In("Yes", "No", "Dunno");
-
Tomz_KV wrote:
Microsoft word grammer check suggest "are".
That gives me a good idea for next time, although I'm not sure about that suggestion. :~
My latest C# extension method: public static bool In<T>(this T value, params T[] values) { return values.Any(v => v.Equals(value)); } Example: bool valid = answer.In("Yes", "No", "Dunno");
modified on Friday, July 25, 2008 3:34 PM
-
Alan Balkany wrote:
With "There are a total..." the subject is "20 women and children"
:confused: If "women and children" is the subject then what role does "total" play in the phrase?
Of all forms of sexual aberration, the most unnatural is abstinence.
I'd guess "total" in this case would also be a subject, but "There are" refers to the main subject, "20 women and children". It appears to be a matter of emphasis.
-
The word "total" is the subject that must agree with the verb. Some words (such as "majority") can be singular or plural, depending on context. Ex: The majority of the people are here. The majority of the pie is eaten. I don't think the word total is ever plural. You would always say, "The total is [blank]" and never "The total are [blank]"
Total as a plural which is totals as we see in elections, the election totals are here.
Need a C# Consultant? I'm available.
Happiness in intelligent people is the rarest thing I know. -- Ernest Hemingway -
Which is correct: There is a total of 20 women and children here. There are a total of 20 women and children here. Both sound OK to me. Thanks.
My latest C# extension method: public static bool In<T>(this T value, params T[] values) { return values.Any(v => v.Equals(value)); } Example: bool valid = answer.In("Yes", "No", "Dunno");
-
Which is correct: There is a total of 20 women and children here. There are a total of 20 women and children here. Both sound OK to me. Thanks.
My latest C# extension method: public static bool In<T>(this T value, params T[] values) { return values.Any(v => v.Equals(value)); } Example: bool valid = answer.In("Yes", "No", "Dunno");
IMO, either works for me. I usually go with the first.
"The clue train passed his station without stopping." - John Simmons / outlaw programmer "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
-
Don't really trust the MS Grammar checker. :rolleyes:
"The clue train passed his station without stopping." - John Simmons / outlaw programmer "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
-
Don't really trust the MS Grammar checker. :rolleyes:
"The clue train passed his station without stopping." - John Simmons / outlaw programmer "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
-
I've never really liked the grammar checker. I do look at it when there is some serious grammar mistakes, but usually wind up going my own way that I was taught in English classes in school.
"The clue train passed his station without stopping." - John Simmons / outlaw programmer "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon