Hi THERE
I need help to prototype ajave program that Calculate typing speed and accuracy of a given text(3 sentences).. hope can fine any guuidance from here
regards,
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Hi THERE
I need help to prototype ajave program that Calculate typing speed and accuracy of a given text(3 sentences).. hope can fine any guuidance from here
regards,
Generally speaking, 5 characters counts as a word. So a sentence like: "My name is Bob." would generally count as 3 words.
If the test itself is not timed, and you're merely typing three sentences, then you would have to calculate how long it takes to type the sentences, factor in your accuracy factor, and then do some math to figure out how many words per minute were typed. I don't know how accuracy is calculated.
As far as starting/stopping the timer, You could probably start it with the first keypress, and either stop it after a certain amount of time, or after a certain number of characters, or something like that.