They would be:
Reader’s name, your name, the date, the subject, and the body of the memo.
Answer:
In a web browser, the address bar (also location bar or URL bar) is a GUI widget that shows the current URL. The user can type a URL into the bar to navigate to a chosen website.
Answer:
1). Serial ATA (SATA): SATA drives are base hard drives. Serial ATA was designed to replace the older parallel ATA (PATA) standard (often called by the old name IDE), offering several advantages over the older interface: reduced cable size and cost (7 conductors instead of 40), native hot swapping, faster data transfer through higher signaling rates, and more efficient transfer through a I/O queuing protocol. On some systems without a controller, these can be cabled instead to the onboard SATA connections on the motherboard. On smaller servers with a controller, they can still be cabled because these systems will not have a backplane. Cabled hard drives are not hot swappable.
2). Near Line SAS: Near Line SAS are enterprise SATA drives with a SAS interface, head, media, and rotational speed of traditional enterprise-class SATA drives with the fully capable SAS interface typical for classic SAS
drives. This provides better performance and reliability over SATA. Basically it is a hybrid between SATA and SAS.
3). Serial Attached SCSI (SAS): SAS is a communication protocol used in Enterprise hard drives and tape drives. SAS is a point-to-point serial protocol that replaces the older based parallel SCSI bus technology (SCSI). It uses the standard SCSI command set. These have extra connections through the top of the SATA connection. These are the top end in performance for electromechanical drives.
4). Solid-State Drive (SSD): An SSD is a data storage device that uses integrated circuit assemblies as memory to store data persistently. SSD technology uses electronic interfaces compatible with traditional block input/output (I/O) hard disk drives. SSDs do not employ any moving mechanical components, which distinguishes them from traditional magnetic disks such as hard disk drives, which are electromechanical devices containing spinning disks and movable read/write heads. Compared with electromechanical disks, SSDs are typically less susceptible to physical shock, are silent, and have lower access time and latency. Typically because of these features, SSD drives can be the fastest I/O in the market today in standard hard drive form factor.
Explanation:
Answer:
Program is written in C++
#include<iostream>
using namespace std;
int main()
{
//1. Prime Number
int num;
cout<<"Input Number: ";
cin>>num;
int chk = 0;
for(int i =2; i <num;i++)
{
if(num%i==0)
{
chk = 1;
break;
}
}
if(chk == 0)
{
cout<<num<<" is prime"<<endl;
}
else
{
cout<<num<<" is not prime"<<endl;
}
//2. Greatest Common Factor
int num1, num2, x, y, temp, gcf;
cout<<"Enter two numbers: ";
cin>>num1;
cin>>num2;
x = num1;
y = num2;
while (y != 0) {
temp = y;
y = x % y;
x = temp;
}
gcf = x;
cout<<"Greatest Common Factor: "<<gcf<<endl;
// 3. LCM
cout<<"Enter two numbers: ";
cin>>num1;
cin>>num2;
x = num1;
y = num2;
while (y != 0) {
temp = y;
y = x % y;
x = temp;
}
gcf = x;
int lcm =(num1 * num2)/gcf;
cout<<"Least Common Multiple: "<<lcm<<endl;
return 0;
}
Explanation:
<em>I've added the full source code as an attachment where I make use of comments to explain some lines</em>