Answer:
An interface could be the design of the homescreen or the way a shell of a computer is designed. I could be wrong tho......
Explanation:
Answer: Storage
Explanation:
Storage means means saving data in computer memory. Memory refers to the location which is meant for short-term data, while storage is the part of the computer system that allows an individual to store and also access data on long-term basis.
It should be noted that typically, storage usually comes in form of a hard drive or a solid-state drive.
Answer:
This program is written in C++
Comment are used to explain difficult lines
The first program that prints 0 to 20 (in decimal) starts here
#include<iostream>
int main()
{
//Print From 0 to 20
for(int i = 0;i<21;i++)
{
std::cout<<i<<'\n';
}
}
The modified program to print 0 to 20 in hexadecimal starts here
#include<iostream>
using namespace std;
int main()
{
//Declare variables to use in conversion;
int tempvar, i=1,remain;
//Declare a char array of length 50 to hold result
char result[50];
//Print 0
cout<<"0"<<endl;
// Iterate from 1 to 20
for(int digit = 1; digit<21; digit++)
{
//Start Conversion Process
//Initialize tempvar to digit (1 to 20)
tempvar = digit;
while(tempvar!=0)
{
//Divide tempvar by 16 and get remainder
remain = tempvar%16;
if(remain<10)
{
result[i++]=remain + 48;
}
else
{
result[i++] = remain + 55;
}
//Get new value of tempvar by dividing it by 16
tempvar/=16;
}
//Print result
for(int l=i-1;l>0;l--)
{
cout<<result[l];
}
i=1;
cout<<endl;
}
return 0;
}
//The Program Ends Here
See Attachments for program 1 and 2; program 2 is the modified version of 1
b. #include
c. #include container
d. #include deque
Answer:
d.#include deque
Explanation:
We have to include deque library in order to use a deque container and the syntax to include is #include<deque>.Deque is a double ended queue which is a sequence container and allows operations of contraction and expansion on both ends of the queue.Double ended queues are a special case of simple queue since in simple queue the insertion is from rear end and deletion is from front end but in deque insertion and deletion is possible at both ends rear and front.
Answer:
(III) machines don't strike or file grievances.
(IV) machines are always less expensive than human labor.
Explanation:
The advantage of automation among the option is:
(III) machines don't strike or file grievances - Machine has the advantage of not going on strike or filing grievances. It just obey instruction. Strike are human way of showing grievances. With automation, there is no issue of strike or filing for grievance.
(IV) machines are always less expensive than human labor - Machines as a means of automation are very cheap when compared to human labor. The only added cost for machine is the added cost after the cost of purchase. For human labor, the cost is not fixed or predictable.
Answer:try redoing everything step by step and see if that solves it
Explanation: