B- the amount you pay the health insurance company every month for coverage
Answer:
def main():
principal = float(input("Enter the amount of principal amount to be deposited: "))
rate = float(input("Enter annual interest rate paid by the account: "))
num = int(input("Enter the number of times per year that the interest is compunded: "))
years = float(input("Enter the number of years the account will be left to earn interest: "))
amount = principal*(1+(rate*.01)/num)**(num*years)
print("The amount of money will be in the account after ", years, "years:", round(amount,2))
main()
Explanation:
- Calculating the balance of the account after a specified number of years with the help of the formula:
- amount = principal*(1+(rate*.01)/num)**(num*years)
Answer:
TS RemoteApp
Explanation:
The question is wrong. Correct question and choices are:
Which of the following is a Microsoft solution that runs on a Microsoft Terminal Services server but appears, to end users, as if it were actually running on their systems?
a.TS Web Access
b.DirectAccess
c.TS RemoteApp
d.Terminal Services for Applications
Terminal Services RemoteApp can be used remotely via remote desktop protocal (RDP) but look like to users as if they are running locally by successfully integrating user's desktop.
These applications are available since Windows Server 2008 and can be used on various windows operating systems.
If there is a bigger supply than demand, it is called a surplus.
Sam's role on the software development team is a Software Quality Assurance.
<h3>What is SDLC?</h3>
SDLC is an abbreviation for software development life cycle and it can be defined as a strategic methodology that defines the key steps, phases, or stages for the design, development and implementation of high quality software programs.
In Computer technology, there are seven (7) steps involved in the development of a software and these include the following;
- Planning
- Analysis
- Design
- Development (coding)
- Testing
- Deployment
- Maintenance
In this scenario, we can reasonably infer and logically deduce that Sam's role on the software development team is a Software Quality Assurance because he his is saddled with the responsibility of identifying the system functions that must be validated and how to test new software.
Read more on software development here:
brainly.com/question/28262663
#SPJ1