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:
the 256 color icon would be greater in file size.
Explanation:
regardless of how many pixels are in the image, file A has 256 colors meaning the computer has to individually load each one of those colors. it'll probably use a lot of ink if you decide to print it, too.
Answer:
I want brainlyest though can I have it
Answer:
A computer is an electronic device that accept raw data and instructions and process it to give meaningful results.
Answer:
name = input("Enter name: ")
droids = int(input("How many droids you want to meet? "))
wookies = int(input("How many Wookies you want to meet? "))
print(name + " wants to meet " + str(droids) + " droids, and " + str(wookies) + " Wookies")
Explanation:
*The code is in Python.
Ask the user to enter the name, number of the droids and number of the Wookies
Print the name, number of the droids, and number of the Wookies
Note that while getting the input for the droids and wookies, you need to typecast the input the int (Since the values are int). Also, to print these variables, you need to typecast them as string in that format.