1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
myrzilka [38]
2 years ago
8

A. Draw a flowchart or write pseudocode to represent the logic of a program that allows the user to enter an hourly pay rate and

hours worked. The program outputs the user’s gross pay.
b. Modify the program that computes gross pay to allow the user to enter the withholding tax rate. The program outputs the net pay after taxes have been withheld
Computers and Technology
1 answer:
konstantin123 [22]2 years ago
6 0

Answer:

Here is the pseudocode.

a.

INPUT hourly rate

INPUT hours worked

SET gross pay = hourly rate  x hours worked

PRINT gross pay

b.

INPUT hourly rate

INPUT hours worked

SET gross pay = hourly rate  x hours worked

PRINT gross pay

INPUT tax rate

SET net pay = gross pay - (gross pay * tax rate / 100)

PRINT net pay

Explanation:

a.

Ask the user to enter hourly rate and hours worked

Calculate the gross pay, multiply hourly rate by hours worked

Print the gross pay

b.

Ask the user to enter hourly rate and hours worked

Calculate the gross pay, multiply hourly rate by hours worked

Print the gross pay

Ask the user to enter the tax rate

Calculate the net pay as gross pay - (gross pay * tax rate / 100)

Print the net pay

You might be interested in
What are the steps for adding an action button to a slide? Choose the correct answers from the drop-down menus. 1. First, go to
Marysya12 [62]

Answer:

insert, illustrations, click and drag, slide show

Explanation:

i got it right

7 0
2 years ago
Read 2 more answers
First calculating device​
AnnyKZ [126]

Answer:

abacus is first calculating device

7 0
3 years ago
Read 2 more answers
Which statement is NOT true:
RSB [31]

Answer:

The correct answer for the given question is   "Machine languages can be used to write programs that can run on any machine."

Explanation:

The machine language consist of binary digit i. e 0 and 1 .Computer can understand only the machine language .The machine language consist of code that is written in bits so it is used  to express algorithms.When any program is compiled the compiler are converted into machine code so the machine language is produced by the compiler .

Machine language cannot used to write a program that run on any machine.

5 0
3 years ago
Which of the following is Not included in the Web Accessibility Initiative? Don’t rely on color alone.
Doss [256]
I'm pretty sure it's D. Provide discount software for the underprivileged.
3 0
3 years ago
"giga" can mean both 109 and 230. explain to what each refers. can this cause confusion when reading a computer advertisement?
inn [45]
Giga usually means 10^9

We're trying to work giba, which is 2^30 into the vocabulary to differentiate them because of the confusion and difference that they create.
7 0
2 years ago
Other questions:
  • What are the two most important network-layer functions in a datagram network? what are the three most important network-layer f
    7·1 answer
  • Create a program that reads words.txt (link near top of our home page) in order to: determine the length of the longest word(s)
    14·1 answer
  • What is the value of i printed? j = i = 1 i += j + j * 5 print("What is i?", i)
    11·1 answer
  • Ali is in the hospital about to undergo a brain-imaging process that involves taking many x-rays from different angles aided by
    9·1 answer
  • What is the benefit of the load balancing logic to end-user?
    15·1 answer
  • Jabria are you smart
    14·2 answers
  • Write a loop that sets newScores to oldScores shifted once left, with element 0 copied to the end. Ex: If oldScores = {10, 20, 3
    13·1 answer
  • What is abbreviation of the computer​
    15·2 answers
  • A task-oriented leader is ideal for a creative workplace.
    8·2 answers
  • What distinguishes Accenture’s Cloud capabilities from our competitors?
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!