Multiple Choice
The following code creates and configures a WordCloud object: from wordcloud import WordCloud
Wordcloud = WordCloud(colormap='prism', mask=mask_image,
Background_color='white')
Which of the following statements is false?
A) The default WordCloud width and height in pixels is 400x200, unless you specify width and height keyword arguments or a mask image. The mask keyword argument specifies the mask image to use.
B) For a mask image, the WordCloud size is the image's size.
C) WordCloud uses Matplotlib under the hood. WordCloud assigns random colors from a color map. You can supply the colormap keyword argument and use one of xe "Matplotlib visualization library:color maps"Matplotlib's named color maps.
D) By default, the word is drawn on a white background.
Correct Answer:

Verified
Correct Answer:
Verified
Q1: Which of the following is not a
Q2: Which of the following statements is false?<br>A)
Q3: Consider the following code: In [18]: blob<br>Out[18]:
Q4: Which of the following statements a), b)
Q5: Which of the following statements is false?<br>A)
Q7: Given the following Word object: In [1]:
Q8: Which of the following statements a), b)
Q9: Which of the following statements is false?<br>A)
Q10: Which of the following statements a), b)
Q11: Which of the following statements is false?<br>A)