If you press and hold [Shift] while creating a rectangle, you can constrain the shape to a perfect square.

Answer the following statement true (T) or false (F)


True

Computer Science & Information Technology

You might also like to view...

The IEEE 802.11 protocol stack consists of the logical link control layer, the medium access control layer, and the _________ layer.

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

Computer Science & Information Technology

What might the output look like?

``` #include int main() { int x, *x_ptr = &x; *x_ptr = 10; cout << “ “ << x << “ “ << &x << “ “ << x_ptr << “ “ << *x_ptr; } ``` A. 10 10 0012FF60 0012FF60 B. 10 0012FF60 10 0012FF60 C. 0012FF60 10 10 0012FF60 D. 10 0012FF60 0012FF60 10

Computer Science & Information Technology

________ is a method applied to data to reduce the amount of storage space

Fill in the blank(s) with correct word

Computer Science & Information Technology

Brandon purchased a new processor online as an upgrade. When he purchased the processor, he made sure that it used the same socket his computer’s motherboard used. But he did not check to see whether the motherboard chipset was compatible. What will happen if you install a processor on a motherboard that can fit the socket but is the wrong chipset?

A. Damage to both the processor and the motherboard. B. The computer will work fine. C. The computer will power on but will fail POST. D. You will not be able install the processor in the wrong motherboard.

Computer Science & Information Technology