Answer:
a database stores a large sum of data
Explanation:
its used to keep track of things like student names bank accounts and other things
Answer:
function [Area,Perimeter,L]=f_circle(x)
% Area: pi*x^2 area of circle with radius x
% Perimeter: 2*pi*x perimeter length of circle with radius x
% x can be a vector
minargs=1;maxargs=1;narginchk(minargs,maxargs); % only 1 input accepted
if ~isequal('double',class(x)) 5 input has to be type double
disp('input type not double');
return;
end
Area=pi*x.^2;
Perimeter=2*pi*x;
end
Answer:
load testing
Explanation:
to see if the activity can handle under performance
Answer: peer-to-peer (P2P) file sharing
Explanation: Peer-to-peer file sharing is the technique in which networking technology is used for the sharing and distribution of the files digitally. The sharing of the files are in the form of movies, games music etc.
Peer are considered as the nodes which are the end-user so, the end-user to end-user file transfer is done through this technology.
Other options are incorrect because VPN(virtual private network) is the connection between network and client over less secure network,LAN (Local area network) is the network that can be established for single infrastructure to connect and point to point protocol is protocol for the routers for communication.Thus the correct option is P2P file sharing.