Answer:
D. smart phone
explanation;
a. what the heck is a radio going to do?
b. an HD television? is his job watching movies?
d. he already has a form of communication he uses, he needs something that can to both things at the same time
c. a smart phone can do everything he needs to do, likely faster than a landline phone or laptop.
Answer:
D
Explanation:
because you use all of those
FTP stands for file transfer protocol. FTP is used to transfer files between computers over the Internet. FTP servers can be setup to allow users to access the information anonymously or require registration for access.
Answer:
The output is: Your cost is 100
Explanation:
Given
The above code snippet
and
Required
Determine the output of the code
if cost < 70 or cost > 150
The above condition checks if cost is less than 70 or cost is greater than 150
This condition is false because 100 is neither less than 70 nor is it greater than 150
So, the else statement will be executed.
discount = cost
Which means
discount = 100
So, the print instruction will print: Your cost is 100