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.
Answer:
The various options that exist for acquiring software are:
- By developing a various custom applications so that, they can satisfied the requirements in an organization.
- By purchasing various software application or packages for modify the software to meet the specific requirements.
- Used the open source software for developing the specific information system so that, the system are acquired.
- Developed the in-house capabilities and skills of employee, this is the main advantage for acquiring the software.
Answer:
This code is written in MATLAB.
function [result] = isPalindrome(array,length)
if length == 0 || length == 1 %if the array is empty or contains only one element, the array is a palindrome
result = 1;
else
for i = 1:length/2 %check all the elements forward and backward until the middle is reached
if array(i) ~= array(end+1-i)
result = 0;
return
end
end
result = 1;
end
Explanation: Please read the comments in the code. In MATLAB, Boolean values are 1 or 0 instead of True or False.
Attach a picture so we can see the question
Answer:
I’m not sure if you can only teachers can acess that
Explanation: