When you hold down the CTRL key while rolling the mouse wheel, text on the screen may become larger or smaller based on the direction you roll the wheel. _______________
Answer the following statement true (T) or false (F)
True
Computer Science & Information Technology
You might also like to view...
Given the following enumerated data type definition, what is the value of SAT? enum myType{SUN=3,MON=1,TUE=3,WED,THUR,FRI,SAT,NumDays};
a. 7 b. 6 c. 8 d. 5 e. unknown
Computer Science & Information Technology
Which of the following statements is false?
a. Assigning an object to a variable binds (associates) that variable’s name to the object. You can then use the variable in your code to access the object’s value. b. After the following snippet’s assignment, the variable x refers to the integer object containing 7. x = 7 c. The following statement changes x’s value: x + 10 d. The following statement changes x’s value: x = x + 10
Computer Science & Information Technology