Answer:
A - 2
B - 3
C - 5
D - 4
E - 1
Explanation:
A. Virtual private network : 2
This is very useful when you have to work from home or visiting a client and need access to files/applications just like if you were at the office.
B. Email : 3
Yes, this is basically why the Internet was created in the first place.
C. Social networking sites : 5
Social networks are indeed a great marketing tool, allowing to target potential customers very precisely.
D. Search engines : 4
Yes, to find information about new products for the company, how the competitors are doing and so on.
E. Video and web conferencing: 1
Another great tool for employees working from home for example, or for employees located in an office at the other side of the country.
Answer:
Written in Python
import math
principal = 8000
rate = 0.025
for i in range(1, 11):
amount = principal + principal * rate
principal = amount
print("Year "+str(i)+": "+str(round(amount,2)))
Explanation:
This line imports math library
import math
This line initializes principal amount to 8000
principal = 8000
This line initializes rate to 0.025
rate = 0.025
The following is an iteration from year 1 to 10
for i in range(1, 11):
This calculates the amount at the end of the year
amount = principal + principal * rate
This calculates the amount at the beginning of the next year
principal = amount
This prints the calculated amount
print("Year "+str(i)+": "+str(round(amount,2)))
True. Museums usually specialize in one area in specifics.
Ex. WWII Museums give great historical info on WWII
Answer:
The code to this question can be given as:
code:
tp = ip;
ip = jp;
jp = tp;
Explanation:
In this question, it is defined that write code for swapping values that swap the pointers, not the values they point to. So in this code, we assume that all the variable and its value is defined. we simply use the swapping rule that is the first value holds in the new variable and second value hold on the first variable and in the last second variable holds the value of the new variable. In this code, the value will be interchanged or swapped.