Quiz 3 -- CS 290W -- Feb 2, 99

(1) What is the name of the CS 290W news group?
(1) purdue.cs290w
(2) purdue.cs.cs290w
(3) purdue.class.cs.290
(4) purdue.class.cs290w
(4)

(2) Which of the following declares a character variable and gives it the value 'r'?
(1) char review;
(2) char 'r';
(3) char review = 'r';
(4) review = 'r';
(3)

(3) Which Boolean operator is normally used to test if one value is less than another?
(1) <
(2) <=
(3) <<<
(4) lessthan
(1)