Questions Uploads

mobile application project

you selected a mobile application project and made some early design decisions regarding functionality. continue with the design process by creating a wireframe diagram for your mobile application project.

Note: A full set of mockups is not required, but you may submit this for instructor feedback.

As you consider the design of your mobile application, consider both functionality and the user experience.

Specifically, the following critical elements must be addressed:

  • design a clear wireframe diagram.
  • Ensure your wireframe includes each primary screen of your mobile app.
  • Ensure your wireframe has navigational annotations.
  • Submit your completed wireframe to your instructor.
 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"

services

I am not able to complete the 3rd and 4th step. 3) Output an invoice for the services selected. Output the cost for each service and the total cost. (3 pts)

Davy's auto shop invoice

Service 1: Oil change, $35
Service 2: Car wax, $12

Total: $47

(4) Extend the program to allow the user to enter a dash (-), which indicates no service. (3 pts)

Ex:

Select first service: Tire rotation

Select second service: -


Davy's auto shop invoice

Service 1: Tire rotation, $19
Service 2: No service

Total: $19

@@@@@@@ here is my code@@@@
services = {'Oil change':35, 'Tire rotation':19, 'Car wash':7,'Car wax':12,'-':'No service'}
print("Davy's auto shop services")
print('Oil change -- $35')
print('Tire rotation -- $19')
print('Car wash -- $7')
print('Car wax -- $12')
total = 0
firstService = str(input('nSelect first service: n'))
secondService = str(input ('nSelect second service: n'))
print("nnDavy's auto shop invoicen")
if firstService == 'Car wash':
    print('Service 1: %s, $7'% firstService)
    total +=7
elif firstService == 'Car wax':
    print('Service 1: %s, $12'% firstService)
    total +=12
elif firstService == 'Tire rotation':
     print('Service 1: %s, $19'% firstService)
     total +=19
elif firstService == 'Oil change':
    print('Service 1: %s, $35'% firstService)
    total =+35
elif firstService == 'No service':
    print('Service 1: No service')
    total 
if secondService == 'Car wash':
    print('Service 2: %s, $7'% secondService)
    total +=7
elif secondService == 'Car wax':
    print('Service 2: %s, $12'% secondService)
    total +=12
elif secondService == 'Tire rotation':
     print('Service 2: %s, $19'% secondService)
     total +=19
elif secondService == 'Oil change':
    print('Service 2: %s, $35'% secondService)
    total =+35    
elif secondService == 'No service':
    print('Service 2: No service')
    total 
    
print('')
    
print('Total: $'+str(total))

The complete program.

1) Output a menu of automotive services and the corresponding cost of each service. (2 pts)

Ex:

Davy's auto shop services
Oil change -- $35
Tire rotation -- $19
Car wash -- $7
Car wax -- $12

(2) Prompt the user for two services from the menu. (2 pts)

Ex:

Select first service: Oil change

Select second service: Car wax

(3) Output an invoice for the services selected. Output the cost for each service and the total cost. (3 pts)

Davy's auto shop invoice

Service 1: Oil change, $35
Service 2: Car wax, $12

Total: $47

(4) Extend the program to allow the user to enter a dash (-), which indicates no service. (3 pts)

Ex:

Select first service: Tire rotation

Select second service: -


Davy's auto shop invoice

Service 1: Tire rotation, $19
Service 2: No service

Total: $19

Top Answer

 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"

labactivity 4.9.1: Warm up: Automobile service cost (Python 3)

1) Prompt the user for an automobile service. Output the user’s input. (1 pt)

Ex:

Enter desired auto service: Oil change
You entered: Oil change

(2) Output the price of the requested service. (4 pts)

Ex:

Cost of oil change: $35

The program should support the following services:

  • Oil change — $35
  • Tire rotation — $19
  • Car wash — $7

If the user enters a service that is not listed above, then output the following error message:

Error: Requested service is not recognized.

labactivity 4.9.1: Warm up: Automobile service cost (Python 3)

 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"

python code

I’m hoping you can help me with this python code. I almost have it correct, but i keep getting an error at the end. below is the problem along with my current code. Please see if you can adjust it to make it cooperate. Thank you!!!6.6 Warm up: Parsing strings (Python 3)

(4) Using a loop, extend the program to handle multiple lines of input. Continue until the user enters q to quit. (2 pts) 

Ex:

Enter input string: Jill, Allen
First word: Jill
Second word: Allen


Enter input string: Golden , Monkey
First word: Golden
Second word: Monkey


Enter input string: Washington,DC
First word: Washington
Second word: DC


Enter input string: q

my code:

while True:

  name=input(‘Enter input string: ‘)

  print(“n”.rstrip(“n”))

  if(name != ‘q’):      

    name=name.replace(‘ ‘, ”)

    if ‘,’ in name:

      name=name.split(‘,’)

      print(‘First word: ‘.strip(),name[0])

      print(‘Second word: ‘.strip(),name[1])

      print(“n”.rstrip(“n”))

      print()

    else:

      ‘,’ not in name

      print(‘Error: No comma in string.’)

while False:

  print()

Top Answer

 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"