In a KeyDown event handler, the ________ property of the object referenced by e contains case-insensitive information regarding which keyboard key was pressed.

a) KeyCode
b) KeyData
c) KeyValue
d) KeyChar
e) KeyType


b) KeyData

Computer Science & Information Technology

You might also like to view...

Given the following class and array declaration, how would you print out the age of the 10th person in the array?

class personClass { public: void setAge(int newAge); void setGender( char newGender); void setSalary(float newSalary); int getAge(); char getGender(); float getSalary(); private: int age; char gender; float salary; }; personClass people[100]; a. cout << people[10]; b. cout << people[9]; c. cout << people[9].age; d. cout << people[9].getAge();

Computer Science & Information Technology

Which of the following is not a Web browser?

a. Safari b. Firefox c. Windows Explorer d. Chrome

Computer Science & Information Technology

When modifying a style to implement the faux column technique, what can be tricky is creating a background image since the image must be sized correctly and must work seamlessly with the CSS ____.

A. link page B. scroll bar C. navigation bar D. background color

Computer Science & Information Technology

You read a PDF document with _____ software:

A. Adobe Dreamweaver B. Microsoft Paint C. Adobe Reader D. Microsoft Format

Computer Science & Information Technology