How can you create a dotted line stroke?
A). Using strokeType: 'dotted'
B). Setting lineDash: [1, 2]
C). Applying lineStyle: 'dotted'
D). Setting linePattern: 'dotted'
Which line join style connects lines with a smooth curve?
A). Miter Join
B). Round Join
C). Bevel Join
D). Curve Join
How can you create a dashed line stroke?
A). Using strokeType: 'dashed'
B). Setting lineDash: [5, 10]
C). Applying lineStyle: 'dashed'
D). Setting linePattern: 'dashed'
How can you set a gradient as the stroke style for a path?
A). Using strokeGradient property
B). Applying gradientStyle: 'stroke'
C). Setting strokeStyle to a gradient object
D). None of the above
Which line join style is suitable for creating sharp corners at line junctions?
A). Miter Join
B). Round Join
C). Bevel Join
D). Curve Join
Which line join style is suitable for creating smooth corners at line junctions?
A). Miter Join
B). Round Join
C). Bevel Join
D). Curve Join
Which line join style connects lines with a sharp angle at line junctions?
A). Miter Join
B). Round Join
C). Bevel Join
D). Curve Join
What property is used to set the width of a line stroke?
A). lineWidth
B). strokeSize
C). lineThickness
D). strokeWidth
What line join style creates a curved corner at the junction of connected lines?
A). Miter Join
B). Round Join
C). Bevel Join
D). Curve Join
How can you create a dash-dot line stroke?
A). Setting lineDash: [5, 3, 1, 3]
B). Applying lineStyle: 'dash-dot'
C). Using strokeType: 'dash-dot'
D). Setting linePattern: 'dash-dot'