You are not putting the question but I can guess that it asking for the CD duration. To answer this question, you need to convert the CD capacity unit(783.216 megabyte) into megabits which were used for the cd read rate (1.4 megabits/s). The calculation would be:
CD duration: CD capacity / rate= 783.216 megabytes *(8 megabits/megabyte) / (1.4 megabits /s)= 4475.52 second or 74.6 minutes
Answer:
see explaination
Explanation:
a)
customerRecord.lastName
b)
customerPtr->lastName or (*customerPtr).lastName
c)
customerRecord.firstName
d)
customerPtr->firstName or (*customerPtr).firstName
e)
customerRecord.customerNumber
f)
customerPtr->customerNumber or (*customerPtr).customerNumber
g)
customerRecord.personal.phoneNumber
h)
customerPtr->personal.phoneNumber or (*customerPtr).personal.phoneNumber
i)
customerRecord.personal.address
j)
customerPtr->personal.address or (*customerPtr).personal.address
k)
customerRecord.personal.city
l)
customerPtr->personal.city or (*customerPtr).personal.city
m)
customerRecord.personal.state
n)
customerPtr->personal.state or (*customerPtr).personal.state
o)
customerRecord.personal.zipCode
p)
customerPtr->personal.zipCode or (*customerPtr).personal.zipCode
Most languages require a compiler. This is because machine code consists of only 0s and 1s, which is executable. All other languages have to be translated into machine language by a compiler.
Answer:
void doublelt(int *number)
{
*number=*number*2;
}
Explanation:
This exercise is for you to learn and understand the PASS BY POINTER syntax. The importance of this is that if you didnt use a pointer you would have to RETURN an int from the function. in that case the code would be:
int doublelt(int number)
{
number=number*2;
return number;
}
Passing by pointer manipulates the value by going inside the memory and where it resides. Without the pointer, the function would create COPIES of the argument you pass and delete them once the function ends. And you would have to use the RETURNED value only.
The 2nd row of ur keyboard its called home row !