A typist is entering text on a keyboard at a rate of 40 words per minute. If each word is 5 characters long on average, what bandwidth in bits per second between the keyboard and main memory is required to transfer the information? A space is also a character. Assume that each word is followed by one space on average.
Here is your answer.. Bandwith= 32 bits/sec
Here, Total word type in one minute= 40
Each word length = 5
Each word is followed by a space so ,basically typist type 6 character (5 + 1 space) for a word
so, total character typist type in one minute = 40 * 6 = 240
[we know that size of character is 1 Byte]
[ 1 Byte = 8 bits]
So, total size of character = 240 Bytes = 240*8 bits = 1920 bits in 1 minute
bandwidth in bits per second = 1920/60 = 32 bits/sec
A typist is entering text on a keyboard at a rate of 40 words per minute....
Research has proven that the average person can interpret 500 pieces if information per minute but can only speak 100-125 words per minute. This gives the average person 375-400 idle bits of processing space in their brain each minute. What happens to the idle space when you are having a conversation with someone? Give an example.
I did the assigment but inside mainWrite a C program (called counting.c) that counts the number of characters, words and lines readfrom standard input (stdin) until EOF is reached. This means counting.c must contain a mainfunction along with other function.- Assume the input is ASCII text of any length.-Every byte read from stdin counts as a character except EOF.- Words are defined as contiguous sequences of letters (a through z, A through Z) and the apostrophe ( ' which has...
Write a new program (hw6-pr1) meeting at least the following minimum requirements: Opens the text version of this file (hw6-Spring2017.txt) and searches thru the file for the first occurrence of each of the 26 uppercase characters of the alphabet (A-Z), then each the 10 digits (0-9), and finally each of the 26 lowercase characters of the alphabet (a-z). As it finds each of these characters it should also record its position in the file (assume the first character in the...
(1) Prompt the user to enter a string of their choosing. Store the text in a string. Output the string. (1 pt) Ex: Enter a sample text: We'll continue our quest in space. There will be more shuttle flights and more shuttle crews and, yes, more volunteers, more civilians, more teachers in space. Nothing ends here; our hopes and our journeys continue! You entered: We'll continue our quest in space. There will be more shuttle flights and more shuttle crews...
Program Description: A C# app is to be created to produce Morse code. The Morse code assigns a series of dots and dashes to each letter of the alphabet, each digit, and a few special characters (such as period, comma, colon, and semicolon). In sound-oriented systems, the dot represents a short sound and the dash represents a long sound. Separation between words is indicated by a space, or, quite simply, the absence of a dot or dash. In a sound-oriented...
QUESTION 6 Please match questions (definitions) with answers - A computer designed to be used by one person at a time, commonly connected to a LAN and run multi-user operating systems - Main residential program that coordinates all hardware and software activity and provide interface for User (GUI). A collection of information stored as one unit with one name. 1. Algorithm 2. File 3. Operating System 4. End User workstation - Sequence of connected instructions that describes behavior of any...
help please!!
Estimating the entropy of English (Problem 14.1-5 of textbook) Estimate the information per letter in the English language by various method but is good enough to get a rough idea.) ter is independent of the others. (This is not true, (a) In the first method, assume that all 27 characters (26 letters and a space) are equiprobable. This is a gross approximation, but good for a (b) In the second method, use the table of probabilities of various...
In this lab you will write a spell check program. The program has two input files: one is the dictionary (a list of valid words) and the other is the document to be spellchecked. The program will read in the words for the dictionary, then will read the document and check whether each word is found in the dictionary. If not, the user will be prompted to leave the word as is or type in a replacement word and add...