Answer:
Option A and Option D are the correct options.
Explanation:
While any information is provided by the manager to its customers which is based on the knowledge of the search conducted.
So, the following knowledge is about the article of the lowest rating and about the search query that has no output.
- Option B is not correct for the following scenario because the manager is informing about the searches conducted by customers, not for the data category.
- Option C is not correct for the following scenario because the articles are not created by them.
Answer:
home page (also written as homepage) is the main web page of a website.
Ans 2
Answer:c ll d
Explanation:
cus they are inside ()--parantheses
Answer:
item = "quesadilla"
meat = "steak"
queso = False
guacamole = False
double_meat = False
base_price = 4.5
if item == "quesadilla":
base_price = 4.0
elif item == "burrito":
base_price = 5.0
if meat == "steak" or meat == "pork":
base_price += 0.50
if meat == "steak" and double_meat:
base_price += 1.50
elif meat == "pork" and double_meat:
base_price += 1.50
elif double_meat:
base_price += 1.0
if guacamole:
base_price += 1.0
if queso and item != "nachos":
base_price += 1.0
print(base_price)
Explanation:
- Use a conditional statement to check if meat is steak or pork then add 0.50 to base_price
.
- Check if the meat is steak or pork, then double_meat adds 1.50 or 1.0 otherwise
.
-
Check if meat is steak and its double_meat
, then add 1.50 and if its for guacamole, then add 1.00 to base_price
. If queso is there and item is not nachos, add 1.00 to base_price
.
- Finally when item is nachos, no need to add any money to base_price
.