I might be true and might not which chances are 50%
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
.
B. Extract all files
In order to access a zipped (compressed) folder you have to extract them. The prompt should say “Extract” not Unzip.
Answer:
mashup
Explanation:
In the application development area, mashup often refers to bringing together various sources of data to create a new product with unique value.
Answer:
The answer is "a design proposal
"
Explanation:
The brochure is just a paper document that could be embedded in design, poster, and flyer. It is also often used for advertising purposes. Its design process, which becomes an imaginative process through which requirements were identified and process designed for the desires, that's why the above-given option is a correct and wrong choice can be defined as follows:
- The choice design brief is wrong because it is a written explanation.
- The choice design critique is wrong because it used to analyze the design.
- In choice design medium, it is processed in which design is prepared, that's why it is wrong.