When you drag multiple Controls onto a Form, what appears to help you align new Controls with others already in place?

A. alignment dots
B. blue dotted lines
C. blue grip angles
D. blue snap lines

Answer: D

Computer Science & Information Technology

You might also like to view...

Given the following simplified classes,

class Pet { public: virtual void print(); string name; private: }; class Dog: public Pet { public: void print(); string breed; }; Dog vDog; Pet vPet; vDog.name="rover"; vDog.breed = "Collie"; Which of the following statements are not legal? a. vPet=vDog; cout << vDog.name; b. vPet=vDog; cout << vDog.breed; c. vPet=vDog; cout << vPet.name; d. vPet=vDog; cout << vPet.breed;

Computer Science & Information Technology

A computer virus is a program that can destroy information in a computer or adversely affect the operation of a system.

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

Computer Science & Information Technology