Answer:
Be Alert to Impersonators. Safely Dispose of Personal Information. Encrypt Your Data. keep Passwords Private. Don't Overshare on Social Networking Sites.
Use Security Software. Avoid Phishing Emails.
Be Wise About Wi-Fi.
Answer:Pseudocode helps us understand tasks in a language-agnostic manner. Is it best practice or suggested approach to have pseudocode creation as part of the development lifecycle? For instance:
Identify and split the coding tasks
Write pseudocode
Get it approved [by PL or TL]
Start Coding based on Pseudocode
Explanation: use phrasing tool if you want to write in your own words.
Answer:
TAX_RATE = 0.20
STANDART_DEDUCTION = 10000.0
DEPENDENT_DEDUCTION = 3000.0
gross_income = float(input("Enter the gross income: "))
number_of_dependents = int(input("Enter the number of dependents: "))
income = gross_income - STANDART_DEDUCTION - (DEPENDENT_DEDUCTION * number_of_dependents)
tax = income * TAX_RATE
print ("The income tax is $" + str(round(tax, 2)))
Explanation:
Define the <em>constants</em>
Ask user to enter the <em>gross income</em> and <em>number of dependents</em>
Calculate the <em>income</em> using formula (income = gross_income - STANDART_DEDUCTION - (DEPENDENT_DEDUCTION * number_of_dependents))
Calculate the <em>tax</em>
Print the <em>tax</em>
<em />
round(number, number of digits) -> This is the general usage of the <em>round</em> function in Python.
Since we need <u>two digits of precision</u>, we need to modify the program as str(<u>round(incomeTax, 2</u>)).
Answer:
I’m pretty sure its C. Can you mark me Brainliest if I am correct? Thank you have a nice day!
Explanation:
Answer:
C. ASCII code
Explanation:
Reflected code is another term for gray code so you can cross both out.
BCD code is binary decimal code used in scientific and graphic calculators
ASCII code is the only one use in a computer keyboard so I'm guessing that's the answer. :)