This is an easy answer sure in the back of your mind u knew it was b good luck :).
Answer:
Colon(:) is the correct answer.
Explanation:
The colon(:) is used to contain those fields which is calculated in the queries. In other words, the colon is used to insert the name for that field which is calculated then, the user uses the colon(:) and after that, he uses the expression in the columns or the field row. So, That's why the following option is true.
Adding a filter to a picture can change the whole effect of the picture. Say you wanted a more vintage theme for your picture, you could use a black and white theme to give it an old timey feel. Different filters can add effects to the picture, maybe the filter gives your picture a blueish cool toned tint, or maybe it adds more light to the filter.
True. You can add chart and axes titles on the chart tools format tab or with the chart elements button.
Answer:
A=input("Enter Number of Marks:")
b=[]
sum=0
i=0
for i in range(0,int(A)):
b.append(input("Enter Marks"))
sum+=int(b[i])
percentage1= (sum/int(A))*100
if percentage1>=20:
print("Grade A")
elif percentage1<=30 & percentage1>=20:
print("Grade B")
else:
print("Grade C")
Explanation:
The above program is in Python. And we are using here a dynamic list. And we are storing A marks in it. And then we are finding its average, and finally assigning the Grade as mentioned.