I'm not 100% sure but I think it might be Microsoft excel.... correct me if I'm wrong
Answer:
special_num = int(input())
if special_num == -99 or special_num == 0 or special_num == 44:
print('Special number')
else:
print('Not special number')
Explanation:
#get input
special_num = int(input())
#if function to evaluate true or false(aka Boolean)
if special_num == -99 or special_num == 0 or special_num == 44:
#true evaluation
print('Special number')
#false evaluation
print('Not special number')
In our bag, 1/2 is peanuts, 1/4 is chocolate and 1/4 is dried fruit.
The likelihood of drawing a chocolate therefore is 1/4.
The likelihood of drawing a peanut is 1/2 and the likelihood of drawing a dried fruit is 1/4.
Thus, D is the correct answer because the 1/4 likelihood of drawing a chocolate is less than the 1/2 chance of drawing a peanut.
Answer:
A.)Power Query Editor
Explanation:
Power Query editor is a Microsoft Office application, it can be utilized to remove fields and format data when importing files.
To remove fields, a user will click on the fields he wants to remove, then right-click to select Remove Columns on the menu, and under the same menu select Remove Columns from the sub-menu.
It is also used in formating data in the table created.