a) fill()
b) stroke()
c) clip()
d) get()
Answer: c
Explanation: The path one defines is drawn by stroke() method. Any region/shape or size in canvas is clipped by clip(). The fill() method fills the current drawing (path). The default color is black. There is no method like get().
Related Posts
A normal queue, if implemented using an array of size MAX_SIZE, gets full when?
A data structure in which elements can be inserted or deleted at/from both ends but not in the middle is?
If the elements “A”, “B”, “C” and “D” are placed in a queue and are deleted one at a time, in what order will they be removed?
Circular Queue is also known as ________
A queue follows __________
The data structure required for Breadth First Traversal on a graph is?
A linear list of elements in which deletion can be done from one end (front) and insertion can take place only at the other end (rear) is known as _____________
Join The Discussion