The main purpose of a security group is to create a distribution list for email purposes. These groups have security information, such as unique security identifiers (SIDs)
Indicate whether the statement is true or false
False —A distribution group is used to create a distribution list. These groups do not possess SIDs and cannot be assigned permission to resources.
You might also like to view...
The %i scanf conversion specifier is not capable of inputting which type of data?
a) hexadecimal b) binary c) decimal d) octal
If you have two RadioButtons (dogRadio and catRadio), how should you code them to create a mutually exclusive relationship?
a. ToggleGroup radioGroup = new ToggleGroup(); dogRadio.setToggleGroup(radioGroup); catRadio.setToggleGroup(radioGroup): b. ToggleGroup radioGroup = new radioGroup(); dogRadio.setToggle(radioGroup); catRadio.setToggle(radioGroup): c. dogRadio.setToggleGroup(); catRadio.setToggleGroup(): d. ToggleGroup dogRadio = new ToggleGroup(); ToggleGroup catRadio = new ToggleGroup();