How do you find the first three formants of a vowel when given the front and back cavity lengths?
Q. i have to find the first three formants of a back, low, unrounded /a/ - like vowel with: back cavity length: b = 8cm and front cavity length: f = 7cm the cavities are supposed to be treated as a tube that is closed at one end and open at the other.
Asked by Robert Paulson - Sun Sep 27 15:36:56 2009 - - 1 Answers - 0 Comments

A. Hahahaha you go to Cornell don't you. I'm working on this stupid problem right now, and when this question came up in my google search I got excited for a moment thinking I would finally find the answer. But noo...
Answered by rustelle5 - Tue Sep 29 20:49:16 2009

Vowel Scan Method! Error, need some help here?
Q. I am trying to write a method that scans the first vowel that occurs on a string, but when I tried this method using the string "what" it does not returns 2 instead of another number. What should I do to fix this? private int vowLocation (String s) { int x = 0; String vowel = "aiueo"; boolean found = false; char st = ' '; for (int i = 0; i <= s.length()-1 && found; i++ ) { if (vowel.indexOf(s.charAt(i )) != -1) { st = s.charAt(i); found = true; } } x = s.indexOf(st); return x; }
Asked by equinoz - Sun Oct 29 19:39:00 2006 - - 1 Answers - 0 Comments

A. change '&& found" in your loop condition to "&& !found". The way you have it, it doesn't go into the loop at all. Or better yet, get rid of the "found" stuff alltogether, and replace the insides of your "if" statement with just {return i;} There is no need to scan the whole string to the end, and than again from the start, since you already know the index you need to return the moment you found that first vowel. A little more elegant approach would be to use a regular expression. For example: return Pattern.compile("[aiueo]" ). matcher(s).start();
Answered by n0body - Sun Oct 29 20:38:12 2006

Vowel counter. works for each string but i also need it to total up everthing?
Q. what i have to do--- How many strings did you read What is the total number of vowels What is the total number of non- vowels my code now tells me vowels and non-vowels for one string but i need to total up all the strings also. so when i input --N-- after it reads the string... i need it to add them all up and also tell me how strings it read. ??? help code below... import java.io.*; class Vowels { public static void main (String[] args) throws IOException { BufferedReader stdin = new BufferedReader(new InputStreamReader(System. in)); String inString=""; boolean go = true; //*** // input prompt user to enter amount of bags //*** while(go){ // Ask user and get user input System.out.println ("Enter a string: "); inString = new… [cont.]
Asked by John - Wed Nov 4 21:57:03 2009 - - 1 Answers - 0 Comments

A. after you print out your five, do this int totalCount = aCount + eCount + iCount + oCount + uCount; System.out.println("Total vowels = " + totalCount);
Answered by mule - Wed Nov 4 22:07:53 2009

a java programme to enter a string and to display the length of a string,to print the number of vowels?
Q. a java programme to enter a string and to display the length of a string,to print the number of vowels?
Asked by Debashis S - Thu Jun 15 10:20:32 2006 - - 1 Answers - 0 Comments

A. Hi there. I don't have time to write the whole thing out, but here are the high points and references. //Here is how you can get the string into the program as a command line argument... public final class Vowels { public static void main(String[] args) { String inputString = args[1]; System.out.println("Enter ed String: "+inputString); //Here is the length of the string... System.out.println( inputString.length ); } } For the vowel counts, I'm sure there's a tricky, ninja way to do it, but I'd just write a loop and count up the IndexOf's for each vowel one after the other. (Using the prior indexOf as the starting point for the specific indexOf variation I linked below). References to each main function are below:
Answered by ogretech - Thu Jun 15 15:45:56 2006

Write a java program to analyse the length of text for grammat statistis. use a driver class.containing main()
Q. Write a java program to analyse the length of text for grammat statistis. use a driver class.containing main() the text should be read from key board input or text file. program shoul include 5 methods which count no. of printable characters, no. of white spaces, no.of vowels, no.of consonants, frequency of vowels
Asked by neelu w - Tue May 8 03:52:27 2007 - - 1 Answers - 0 Comments

A. This is only a guide for you and you will have to do the coding yourself. The idea is to make a class file that holds the main program. You need to have 5 methods, and it would be best if they were in the same class. public class Example { public static void main(String[] args) { // You would want to check if you need to read from a file, or from the keyboard. // An easy way to do this is to check for an argument passed in. // This argument will be in the args String array. } // The 5 methods. private void incrementPrintableCharact erCount() {} private void incrementWhiteSpaceCount( ) {} private void incrementVowelCount() {} private void incrementConsonantCount() {} private int getFrequencyOfVowels() {} The in you main… [cont.]
Answered by Mark aka jack573 - Wed May 9 22:59:23 2007

How to pronounce Latin phrase?
Q. I recently had help from Yahoo answers in translating I love my children beyond measure, now I would like to know how to pronounce the words as it is difficult to research which syllable is stressed and whether a vowel is long or short in a word. The translated phrase I chose (out of 2 great translations) was liberos meos immodice amo I'm not sure on the stresses in liberos or immodice or the sound/length of the vowel Any help would be greatly appreciated Thanks
Asked by seanus - Wed Sep 23 11:31:15 2009 - - 2 Answers - 0 Comments

A. LEE-beh-rohs MEH-ohs im-MOH-dih-cheh AH-moh
Answered by Ale92 PDPM - Wed Sep 23 11:36:21 2009

Please help me in creating a program in C++ OOP? HELP!?
Q. I have stopped school for 4 yrs and currently right now i am emrolled. Unfortunately, i was given an output that i have to create a program using Class and discuss it. When we enter a sentence the program will count the number of special characters, digits, consonants, vowels, length and it will automatically lowercase and uppercase the sentence. If it helps, i was advised to use strlwr, strupr, strlen, ischar, isdigit, isspace. I honestly don't have any idea how to do this. HELP Here is the output: Enter the sentence: The 2 boys are very shy! Uppercase: THE 2 boys are very shy! Lowercase: the 2 boys are very shy! length: 24 # of vowels: 5 # of consonants:12 # of special character: 1 # of digits: 2
Asked by jm_pearl21 - Wed Dec 5 19:40:32 2007 - - 4 Answers - 0 Comments

A. Here's the beginning of such a class - you should be able to create the member I left behind #include public class cSentence { public : // constructor cSentence(char* sSentence) { sInput = new char[strlen(sSentence)+1] ; strcpy(sInput, sSentence); } // destructor ~cSentence(delete sInput){;}; // Methods int SentenceLen() {return strlen(sInput);} // length char * SentenceToLower() { char* sLower = new char[SentenceLen()+1]; // someone will delete this later strcpy(sLower, strlwr(sInput)); // copy this to memory heap return sLower; // caller has to delete. } char*SentenceToUpper() { // fill in } int CountVowels() { // fill in } int CountConsonants() { // fill in } int CountDigits() { // fill in } int CountSpecials() { // fill… [cont.]
Answered by tfloto - Wed Dec 5 20:25:10 2007

What java code do i need to count...?
Q. I have to write a program that will allow the user to input as many lines as they want until they enter quit. The output has to say the number of lines input, the number of words, characters in the words, occurence of each vowel, average word length and average vowels per word. I am not asking fo the entire code, so anyone who says to do my own homework can go *** themselves because I am just asking for the lines of code that will do these things, and I will put it together and try to make sense of it. i know that something.length() will give the number of characters input for one line, but how do i get this to not include spaces or commas, and do so for numerous lines of input?
Asked by FOnewm - Sat Oct 10 11:02:33 2009 - - 1 Answers - 0 Comments

A. Well if I were going to write this program, I'd use the Scanner class. Go look that up on google, because it's pretty useful. So getting a whole line would be like in.nextLine(), where in is a scanner object. From there you should be able to figure out the rest. For instance, you could put the code in a while loop, testing the input to make sure it doesn't equal "quit". And lines++ while it doesn't (basically counting each line). You're going to need some basic string functions. Stuff like isDigit(), isLetter(), etc will help split the punctuation from the actual values. After that you can scan through individual lines and pick off stuff like vowels, etc. You could use a tokenizer to get individual words in a line, and get length… [cont.]
Answered by Sean - Sat Oct 10 11:27:47 2009

How can one develop an ear for Latin poetry?
Q. Latin poetry is based on the length of the vowel and not the stress of the syllable. As a native english speaker, I don't have an ear for that. I read Latin aloud (mostly to myself) to try to get a sense of the sound, but it seems inefficient, especially since I've learned all I know so far by independent study, and don't really know anyone else who could speak it (let alone well enough to help me develop an appreciation for the language as it was spoken). Could i use a metronome? Is there a collection of good audio clips some where? Should I just keep practicing? Any methods anyone knows? A good latin resource on prosody? I would really like to hear the poetry in Catullus, Ovid, Virgil and others. I imagine it plays a lot in Cicero as a… [cont.]
Asked by gurureoul - Fri Apr 11 14:31:25 2008 - - 6 Answers - 0 Comments

A. Try here for a Harvard project addressing just this question, and good luck I never developed an ear for it myself, but Latin has been VERY helpful to me in picking up other languages. Good luck!!
Answered by tracymoo - Fri Apr 11 14:40:17 2008

What do you think of this baby name?
Q. Sara Jasmine Wingrove Sara Jasmine Wingrove is a name that reflects analytical powers and a quest for knowledge and information, a search for truth and wisdom. The name Sara Jasmine Wingrove makes one feel like one is in the company of greatness and unconventional intelligence. Inventive. Emotion takes a back seat to mental prowess. The name Sara Jasmine Wingrove inspires study and research, open-mindedness, daring new concepts, and a devotion to discovering the unknown. But the name Sara Jasmine Wingrove also gives a sense of philosophy and religious search. Here too, the path to seeking the meaning of the Divine is unconventional. Sara Jasmine Wingrove's most positive characteristics: Intelligence, depth, spirituality. Always in… [cont.]
Asked by JayJay - Tue Nov 11 20:53:02 2008 - - 9 Answers - 0 Comments

A. okay... i like the name but all the info is kinda... over done?
Answered by Hardy & Laroux's Mommy - Tue Nov 11 21:50:31 2008

what is wrong with this set of code?
Q. for (i=0;i<20; i++){ if(player[N].name1[i]!='\ 0'){ if(player[N].name1[i]!=pl ayer[N].name2[i]||player[ N].name2[i]!='a'||player[ N].name2[i]!='e') { player[N].valid=0; break; } } }//for i i am trying to compare the name in player.name1 and player.name2, the name is valid if it is different in vowel such as a and e. it is invalid if the length is different or the letter that is different is not a vowel example pele = pela=pala=pale but not = to pzla, pelle... when i try to run my whole code, it show that player[N].name1[i] did not read the first letter p of pele. instead it read in some garbage char... Please advise
Asked by Low - Fri Nov 6 10:08:19 2009 - - 3 Answers - 0 Comments

A. Since you are getting a garbage value for the first letter, I would check what it saved in the 2 names. If the values are the correct values, then check what is the various letters. Something like this would do: cout << player[N].name1 << endl; cout << player[N],name2 << endl; for (i=0;i<20; i++){ cout << player[N].name1[i] << endl; cout << player[N].name2[i] << endl; if(player[N].name1[i]!='\ 0'){ if(player[N].name1[i]!=pl ayer[N].na { player[N].valid=0; break; } } The if all the letters and the whole names are correct, you need to change your code so you can check if the letters are vowels or not. So, you could do something like this: if(player[N].name1[i]!=pl ayer[N].na { if (player[N].name1[i] == 'a' || player[N].name1[i] ==… [cont.]
Answered by Mark aka jack573 - Tue Nov 10 07:59:43 2009

i need some help with my math please?
Q. 3. A van travels 240 miles on 12 gallons of gas. Write and solve a proportion to find how many gallons the van needs to travel 420 miles. (1 point) 78 gallons of gas 84 gallons of gas 21 gallons of gas 27 gallons of gas 4. A package delivery company has determined that they can meet their schedules if they have 4 drivers for every 30 square miles of area they cover. If they want to offer service to a county of 75 square miles, how many drivers must they have? (1 point) * 12 drivers * 10 drivers * 15 drivers * 9 drivers 6. Two rectangles are similar. One has a length of 11 cm and a width of 6 cm, and the other has a width of 5 cm. Find the length of the second rectangle. Round to the nearest tenth if necessary. (1 point) * 9.2 cm *… [cont.]
Asked by princess's mommy - Sat Mar 20 10:33:52 2010 - - 2 Answers - 0 Comments

A. 3) 240m = 12g Thus 1m = 0.05g Thus 420m = 21g 4) 30sqm = 4d 1sqm = 4/30 d 75sqm = 300/30d 75sqm = 10d 6) See and calculate it yourself 7) see above 8) 42 9) 72 10) 41.3 % of 1000 is 413 or roughly 400 11) I = prt I = $184.28, r = 4.1%, and t = 2 yr. Thus 184.28 = p * 4.1 % * 2 Thus 184.28. = p * 4.1/100 * 2 Thus 184.28 = p * 8.2/100 Thus 184.28 = p * 0.082 Thus p = 2247.317 (or roughly $2247.32) 12) Anything from 0.9905 to 0.9914 would be rounded to 0.991. The the maxmium you can be off is 0.0005g 13) Again anything from 1.50 m to 2.49 metres would be rounded to 2m. This the maximum is 0.5m That is 25 % of 2 m 16) The total number of letters is 39. First the chance of choosing a consonant is 15/39. Subsequently the chance… [cont.]
Answered by George M - Sat Mar 20 10:58:56 2010

Basic Algebra Questions. Im having trouble.?
Q. 13. A cell phone company orders 500 new phones from a manufacturer. If the probability of a phone being defective is 2.6%, predict how many of the phones are likely to be defective. Round to the nearest whole number. (1 point) 16 phones 13 phones 11 phones 130 phones 14. Suppose you choose a marble from a bag containing 2 red marbles, 5 white marbles, and 3 blue marbles. You return the first marble to the bag and then choose again. Find P (red and blue). (1 point) 15. You have three $1 bills, four $5 bills, and two $10 bills in your wallet. You select a bill at random. Without replacing the bill, you choose a second bill at random. Find P ($10 then $1). (1 point) 16. Two rectangles are similar. One has a length of 10 cm and… [cont.]
Asked by Er R - Sat Jan 10 13:13:52 2009 - - 3 Answers - 0 Comments

A. Chuck Norris
Answered by flowerrr - Sat Jan 10 13:21:38 2009

could you please help me in math ?
Q. 1. Find the unit rate for number of parts manufactured per hour if 1,630 parts are made in 6 hours. Round to the nearest integer. (1 point) 325 parts/h 272 parts/h 237 parts/h 291 parts/h 2. Write the conversion factor for converting meters to centimeters. (1 point) 3. A tree casts a shadow 10 ft long. A boy standing next to the tree casts a shadow 2.5 ft long. The triangle shown for the tree and its shadow is similar to the triangle shown for the boy and his shadow. If the boy is 5 ft tall, how tall is the tree? Drawing not to scale (1 point) 18 ft 12.5 ft 15 ft 20 ft 4. A golf club plans a trip to Hawaii, and 74 members are going. If this is 50% of the club's members, how many members are in the club? (1 point) 148… [cont.]
Asked by Mariah - Tue Jun 8 15:22:07 2010 - - 1 Answers - 0 Comments
I need help finding a midle name!?
Q. I need to find a very uncommon middle name of one of my friends. The only clues that I have are: It starts with a C It is only 5 letters in length It sounds similar to ENIAC Every other letter is a constanant, and every other letter is a vowel. He also told me that it is basically just a bunch of vowels and constanants put together randomely. please help! 10 pts to whoever helps the most! I just received extra help and clues and found out that it's Camak. I'll give it to whoever came the closest. THANKS
Asked by Nick - Fri Jul 23 21:15:10 2010 - - 7 Answers - 0 Comments

A. caden but it doesn't rhyme. cenac??? cenic??? cayak maybe?or he could talking about a kayak. caven??? canak???
Answered by Pink Puppies - Fri Jul 23 21:26:36 2010

Java do while loop question?
Q. Ok I got a question for a problem I have for a course in college that I've been struggling with for hours. It seems I have most of it right but I just dont know how to make the while check to see if the user clicked cancel correctly. Can anyone help me with this? Much appreciation. Question - Design and implement a program with a Java class called Program4 that will ask a user to input a line of text to be analyzed. The program will report on each line after it is entered and then go on to the next line to be input and analyzed. The program will stop its analysis of lines when the user hits the cancel key in response to the given prompt. After the user hits the cancel key he will be given the summary report based on all lines… [cont.]
Asked by Daviz Boi - Mon Oct 5 03:57:59 2009 - - 1 Answers - 0 Comments

A. //pk When you press CANCEL button of InputDialog, it will return NULL. So just handle NULL and break the loop as below: userInput = JOptionPane.showInputDial og("Input a line to be analyzed"); if(userInput==null){ break; }
Answered by Pramod - Wed Oct 7 05:08:29 2009

Geneses help with a riddle?
Q. Ok before anything I know I know.. this is for a dumb child's game but it's been stcuk in my mind since yesterday please don't say dumb things like "OMG you play neopets???" or anything ignorant please.. anyway smart people!! please help me this is it; Rule 1: All consonants are worth 1 point, and all vowels are worth two points. Rule 2: The letters "W" and "Y", being either a vowel or consonant depending on usage, are worth three points. Rule 3: Any letter that is also a Roman numeral is worth five additional points Rule 4: If there is any letter that appears more than once in a word, the second instance of the letter is worth double the first instance; the third instance of the letter is worth double the second, and so on. Rule 5: The… [cont.]
Asked by Josie - Wed Oct 29 20:08:26 2008 - - 4 Answers - 0 Comments

A. we got Xweetok
Answered by Angel Tears - Fri Oct 31 07:38:57 2008

HELP WORKING ON PIG LATIN IN VISUAL BASIC 2005 VERISON!!!?
Q. Okay i'm trying to work on something just for fun! Its changing words in english to Pig Latin, so far i've got the Number and If the word BEGINS with a VOWEL to end in -WAY... and that works fine i just need help on trying to get it where i'll enter words like BORED and it changes it to ORED-BAY and STRING to ING-STRAY because it suppose to look for the first vowel for -AY!!! Please if you can help let me know thank you so much for the help! This is my CODE below!!! Public Class xPigLatin Private Sub xExitMenuItem_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles xExitMenuItem.Click Me.Close() End Sub Private Sub xNewTranslationMenuItem_C lick(ByVal sender As Object, ByVal e As System.EventArgs)… [cont.]
Asked by Duffmaster08 - Wed Apr 1 11:32:50 2009 - - 1 Answers - 0 Comments

A. Without doing the coding for you, I'll tell you this statement: Me.xTranslationLabelBox.T ext = (strInput.Substring(1) & "-" & anything & "ay") is almost there. As I see it, the change has to be figuring out how to handle not just the first character, but the first consonantal sound -- everything up to the first vowel. Hope that helps.
Answered by The Phlebob - Wed Apr 1 23:00:55 2009

Help me figure out the riddle? 10 points!?
Q. Ok before anything I know I know.. this is for a dumb child's game but it's been stcuk in my mind since yesterday please don't say dumb things like "OMG you play neopets???" or anything ignorant please.. anyway smart people!! please help me this is it; Rule 1: All consonants are worth 1 point, and all vowels are worth two points. Rule 2: The letters "W" and "Y", being either a vowel or consonant depending on usage, are worth three points. Rule 3: Any letter that is also a Roman numeral is worth five additional points Rule 4: If there is any letter that appears more than once in a word, the second instance of the letter is worth double the first instance; the third instance of the letter is worth double the second, and so on. Rule 5: The… [cont.]
Asked by Josie - Wed Oct 29 20:07:29 2008 - - 4 Answers - 0 Comments

A. So what's the question? Which species has the highest points? Xweetok.
Answered by ilikekoko - Wed Oct 29 21:20:23 2008

Need help in a Phrase guessing game in java?
Q. I need some help in creating this phrase guessing program for my cs class. My main problem is finding a way to store a string and change the contents inside the string. The reason i need to do this is that the user is supposed to first see the whole phrase with "*"'s representing the letters in the phrase. I plan on making a copy of the string that i currently have and changing all the letters to "*"s. Then the user will type in a command, like v e, which means vowel e. It will then output whether or not the phrase contains the letter and output the copy with the "*"s and the correctly guessed letters. I'm not sure if my thought process is right. So far, i've not been able to copy the created string and change the index inside the array of… [cont.]
Asked by eric - Sun Jul 26 19:58:49 2009 - - 1 Answers - 0 Comments

A. Your methodology is pretty good. Here's how I would attack the problem: Computer selects a phrase. Tells user ***. User guesses letter. Certain *'s are replaced by that letter. User guesses more letters. More *'s are replaced. User guesses phrase. Computer says correct or not. To guess a letter, the user can type l and then the letter. To guess the phrase, the user can type p and then the guess.
Answered by coolanswerer - Sun Jul 26 20:09:21 2009

From Yahoo Answer Search: 'Vowel length'
Sun Sep 5 22:00:11 2010 [ refresh local cache ]

lecture15 13 gif
ling.udel.edu
lecture15 13 gif
490px x 359px | 4.50kB

[source page]

Example 2 Minimal Pairs for English Vowels Example 3 Vowel Length in Japanese

Yahoo Images Search: Vowel length,
Sun Sep 5 22:00:11 2010
Long and Short vowels in Greek - KOINONIA Greek Forum
ellopos.net
Long and Short vowels in Greek - KOINONIA Greek Forum

onceuponapriori

ue, 01 Jun 2010 12:53:28 GM

There are some rules about the . length. of . vowels. that can be either short or long ( , , ), and I'm sure you can find them in your Grammar book. But you can also infer their . length. by the accent of a word (see ...

Google Blogs Search: Vowel length,
Sun Sep 5 22:00:11 2010