Answer:
Ermm... i don't really know but probably
the benefits can be: multi device connection and can be upgraded.
The disadvantages: The server is expensive i think, a special staff like a network manager is needed, and if any single part of the system fails a whole lot of disruption can come.
hope this helps!
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
Answer:
would it be term and tequnique?
Explanation:
oooooooo
Answer:
Following are the code to this question can be described as follows:
c= input('Input triangle_char: ') #defining variable c that input character value
length = int(input('Enter triangle_height: ')) # Enter total height of triangle
for i in range(length): # loop for column values
for j in range(i+1): #loop to print row values
print(c,end=' ') #print value
print()# for new line
Output:
please find the attachment.
Explanation:
In the above python code, two variable "c and length" variables are declared, in variable c is used to input char variable value, in the next line, length variable is defined, that accepts total height from the user.
- In the next line, two for loop is declared, it uses as nested looping, in which the outer loop prints column values and inner the loop is used to prints rows.
- To prints all the value the print method is used, which prints the user input character triangle.
Im really not sure but i need points so i can ask questions so i can get my math classes done so then i can graduate sos help