Answer:
Explanation:
web server= stores text, images, and other media that make up a website
email server= stores and exchanges messages
Proxy server= filters content and stores data for faster access
FTP server= stores and provides files for download
Explanation:
==================
lin_spaced_vector.m
==================
function out=lin_spaced_vector(in1,in2)%defining function
out=linspace(in1,in2,200);%200 spaced numbers between in1 and in2
end
===================
Executable File
===================
clear all%clears history
clc%clears screen
lin_spaced_vector(1,10)%calling function
clear all
clc
lin_spaced_vector(1,10)