Answer:
Below is the required statement:
Explanation:
select c.categoryname
from categories c
where not exists (select 1 from products p where p.categoryid = c.categoryid);
Answer:
total = 0
items = int(input("Enter the number of items ordered: "))
for i in range(items):
price = float(input("Enter the price of item " + str(i+1) + ": "))
total += price
if total < 200:
total += (items * 10)
print("Bill is $" + str(total))
Explanation:
*The code is in Python.
Ask the user to enter the number of items ordered
Create a for loop that iterates depending on the number of items ordered. Inside the loop, ask the price of each item and add it to the total
After the loop, check the total. If it is smaller than 200, add 10 for each item to the total
Print the total
C. is the answer to that question
Answer
Your contact information
Explanation
A letter is one person's written message to another pertaining to some matter of common concern while an emails are messages distributed by electronic means from one computer user to one or more recipients via a network. Letters and mails should contain your contact information.
Contact information is an individual's private or personal information by which another person, can use to reach the other individual person.
A constructor, member initialization lists and also the default member initializer. Here you see all three (in reality you choose one construct per variable).
class A
{
public:
int x = 0;
A() : x(1)
{
x = 2;
}
};