Answer:
The answer is A, Set the product X Template section filter field to product code = product X; repeat for product Y.
Explanation:
It is of note that the admin hope to achieve an output of quote represented on display on different template in the shortest possible time. It is also of note that there are two unique product whose quote should be represented.
Why the answer should be A, is because the algorithm in the program tasks the input toward displaying an output that represent a quotation at X as a core, On completion of this, it repeats the same process for Y, however this time it is filtered further.
The correct answer is therefore A.
Answer:
kdkskskiisidiodoosooddodod
This is to much work for 5 points cmon
Answer:
intNum = int(input("Enter an Integer "))
for i in range(1,intNum):
print(i)
Explanation:
Firstly and integer variable intNum is declared. Using Python's input function, we prompt the user to enter a value and assign it to intNum
Then we use the range function to iterate from the integer 1 up to but not including intNum and print out the values.
see sample code and output attached