Answer: C)LACP
Explanation: LACP(Link Aggregation Control Protocol) is the protocol that is responsible for the management of the physical ports present on a particular channel. The main purpose of this protocol is to improve performance by laying the network in the parallel structure so that traffic can be managed.
Other option are incorrect because they don't provide traffic management over the physical link. Thus, the correct option is option(C).
I'm writing that in some sort of pseudocode; if you don't understand it, feel free to ask for more details in the comments.
function sumOdd(n)
if n==1 then
return 1
end if
return (sumOdd(n-1))+(n*2-1)
end function
Answer:
You should do the following:
- Create an account of computer for RODC in the domain controller OU (Organizational unit) as well as allow the Micheal's account to join the computer to the domain.
Explanation:
RODC:
It is called as Read only domain controller that is used to ensure the protection of the servers at remote offices of an organizations.
- In this case, you are installing an RODC in a new branch office that is remote. For installation of RODC on windows server 2012 R2, we need to create an account for the computer in the domain controller organizational unit for the installation of RODC.
- We also need to create an account for Micheal's with the privilege to join that computer to the domain.
Answer:
c. Service oriented architecture (SOA)
Explanation:
In a service oriented architecture (SOA), a component of an application provides services to other components of the application or other applications majorly via a communications protocol over a network. In other words, SOA is a programming or software development technique in which services communicate with each other across different platforms.
One key principle of SOA is to design an application (which in itself is a piece of software with multiple features) that is independent of any product, service, vendor or technology but can be integrated into other applications. SOA makes use of loose coupling - a technique in which a client service remains independent of another service that requires it.
In contrast, a monolithic architecture aims at developing a software that is self-contained, independent and not to be integrated into other applications.
On another hand, Software as a service (SaaS), though a bit similar to SOA, is a model in which an application is made available to customers basically through a network. Users basically access the application via a browser.
Therefore, the best option is
C. Service oriented architecture.