I guess the correct answer is concurrency control
Cοncurrеncy cοntrοl is a databasе managеmеnt systеms (DBMS) cοncеpt that is usеd tο addrеss cοnflicts with thе simultanеοus accеssing οr altеring οf data that can οccur with a multi-usеr systеm.
In database systems, the DBMS enforces rules about which user can perform which action when. The rules are known as concurrency control.
Your anwser will be the last one
2. on the file menu, click new, and then click blank presentation.
Answer: A. A method of access control that allows a user to log on to a system and gain access to other resources within the network via the initial logon
Explanation: key distribution center ( KDC) is a system that is used to provide access to a particular network user who shares data which are either private or regarded as sensitive.
It is a form of encryption that allows multiple system within the same network through the use of uniquely secured tickets used to setup a secure connection which gives room for data to be shared.
KDC makes use of cryptographic techniques to prove the validity of a user and grants a ticket permission access. The user present the ticket of permission to the system which then validates it and grant access to the user.
Example of security system that adopts KDC include kerberos.
Answer:
polymorphic
Explanation:
An example of polymorphic reference, suppose you have 3 classes: Main, Product and SpecificProduct. If SpecificProduct extends Product this means it is a product class but with something else to complement.
Say you want to reference an object of product in the main class, you can do it the classic way:
Product pd = new Product();
Or you can do it polymorphic, like this:
Product pd = new SpecificProduct();
The program will accept just fine because SpecificProduct is extending Product. When you do it like this, we say the reference you made was a polymorphic reference