Answer:
c. Better
Explanation:
Truncate command response time is better as compared to Delete command.
In python:
lst = ([])
largest = 0
while len(lst) != 6:
user_number = int(input("Enter a number: "))
lst.append(user_number)
for i in lst:
if i > largest:
largest = i
print(largest)
I hope this helps
When a business firm such as Starbucks sells its products (coffee and mugs) to the general public on its website, it is a <u>B2C sale</u>.
<h3>What is B2C?</h3>
B2C is a business model which literally means business to consumer and it can be defined as a market which involves businesses selling their products and services directly to the end consumers for their personal use, usually over a website.
In this context, we can infer and logically deduce that when a business firm such as Starbucks sells its products (coffee and mugs) to the general public on its website, it is a <u>B2C sale</u>.
Read more on B2C here: brainly.com/question/2829594
#SPJ1
Explanation:
Question 1:
Ans: index
Index is a unique position to identify a particular value in an array.
Question 2:
Ans: Element
Element is the individual value present in the array. An array is used to store one or more element.
Question 3:
Ans: String
We can find from the question that the value is enclosed within "" (double quotes). So, the value added to the array is string. Any value that is enclosed within double quotes are termed as string.
Question 4:
Indexes are always int. Array index are never float. This is because, it represent the position.
Question 5:
The output will be 3. The reason is there are 3 values appended to the array "stuff" in the given piece of program.
Question 6:
The given code is an example of initializer list. Price is a list variable where the values are initialized.