Which of the following memory types has a clock speed of 400MHz?

A. PC1600
B. PC2700
C. PC3200
D. PC5200


Answer: C. PC3200

Computer Science & Information Technology

You might also like to view...

When compiling a generic class, the __________ option should be used to view the unchecked warning message.

a. -Xlint:unchecked. b. -X:unchecked. c. -warning:unchecked. d. -unchecked.

Computer Science & Information Technology

Declare variable x of type int and initialize it to 1.

Write a Java statement to accomplish each of the tasks.

Computer Science & Information Technology

(Pig Latin) Write a program that encodes English language phrases into pig Latin. Pig Latin is a form of coded language often used for amusement. Many variations exist in the methods used to form pig Latin phrases. For simplicity, use the following algorithm: To form a pig-Latin phrase from an English-language phrase, tokenize the phrase into words with function strtok. To translate each English

word into a pig-Latin word, place the first letter of the English word at the end of the English word and add the letters “ay.” Thus, the word “jump” becomes “umpjay,” the word “the” becomes “hetay” and the word “computer” becomes “omputercay.” Blanks between words remain as blanks. Assume that the English phrase consists of words separated by blanks, there are no punc- tuation marks and all words have two or more letters. Function printLatinWord should display each word. [Hint: Each time a token is found in a call to strtok, pass the token pointer to function printLatinWord and print the pig-Latin word.] What will be an ideal response?

Computer Science & Information Technology

A(n) ____________________ is information arranged in horizontal rows and vertical columns.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology