Answer:
I think its option a. and d.
Explanation:
option a. is right I'm sure.
option b. and c. are doubtful for me.
option d. can be true. but unlike a job letter, resumes carry a deeper view of the employee's accomplishments and qualifications.
but I still hold with option a. and b. if it's wrong please do inform, so I can refer.
Answer:
product_name = input("Enter product name : ")
if product_name=="pen"or"book"or"box"or"pencil"or"eraser":
if product_name == "pen":
amount = 10
print(f"Product Name: {product_name}\nCost: {amount} rupees")
if product_name == "book":
amount = 100
print(f"Product Name: {product_name}\nCost: {amount} rupees")
if product_name == "box":
amount = 150
print(f"Product Name: {product_name}\nCost: {amount} rupees")
if product_name == "pencil":
amount = 5
print(f"Product Name: {product_name}\nCost: {amount} rupees")
if product_name == "eraser":
amount = 8
print(f"Product Name: {product_name}\nCost: {amount} rupees")
else:
print("Item not found!")
Explanation:
The python program is a code of nested if-statements that compares the input string to five items of the first if-statement. For every item found, its code block is executed.
The first step would be knowing the manufacturer s recommended schedule for maintenance
Answer:
Data is accessed in a random-access manner, meaning the individual blocks of data can be stored and retrieved in any given order or time.
Explanation:
Answer:
Print 4 + 4
Explanation:
If you're writing this in the programming language called BASIC, this is how you would add any two numbers.