Answer:
6 address lines
Explanation:
The computation of the number of address lines needed is shown below:
Given that
Total memory = 64MB
= 
=
Also we know that in 1MB RAM the number of chips is 6
So, the number of address lines is
i..e 26 address lines
And, the size of one chip is equivalent to 1 MB i.e. 
For a single 1MB chips of RAM, the number of address lines is

Therefore 6 address lines needed
Answer:
A mother board is something that helps a electronic run im guessing
Explanation:
Pendrive, CD is local storage divices
Answer:
How you will be innovative in what you offer
Explanation:
personally I think all 3 but it is what it is
Answer:
The solution code is written in C++
- float cellPhone(int m, int tx){
- float COST_PER_MIN = 0.1;
- float COST_PER_MESSAGE = 0.2;
-
- float bill_amount = m * COST_PER_MIN + tx * COST_PER_MESSAGE;
-
- return bill_amount;
- }
Explanation:
Firstly, declare a function named cellPhone() that takes two input parameters, m and tx (Line 1).
Since the policy of the carrier company is not given in the question, I make a presumption that the cost per minutes is $0.10 and the cost per message is $0.20 (Line 2- 3).
Next, apply the formula m * COST_PER_MIN + tx * COST_PER_MESSAGE to calculate the total bill (Line 5) and return the bill_amount as function output (Line 7).