What are gradient stops in SVG used for?
A). Defining color transitions
B). Creating shapes
C). Applying animations
D). Applying filters
Which element is used to define a linear gradient in SVG?
A). <linearGradient>
B). <radialGradient>
C). <rect>
D). <circle>
What effect does changing the offset values of gradient stops have on the gradient?
A). It changes the position of color transitions
B). It changes the color of the stops
C). It changes the size of the stops
D). It changes the direction of the stops
How does the position of a gradient stop affect the color transition?
A). It determines where the color transition occurs
B). It determines the color of the stop
C). It determines the size of the stop
D). It determines the direction of the stop
How do you add gradient stops to a linear gradient in SVG?
A). By using multiple <stop>
elements
B). By using the<color>
element
C). By using the <path>
element
D). By using the<gradient>
element
What is the purpose of the stop-color attribute in an SVG gradient stop?
A). Defines the color of the stop
B). Defines the position of the stop
C). Defines the size of the stop
D). Defines the direction of the stop
How can gradient stops be used to create a color transition effect from opaque to transparent?
A). By gradually decreasing the opacity of stops
B). By gradually increasing the opacity of stops
C). By setting the stop-color to white with opacity 0
D). By setting the stop-color to black with opacity 1
What does the stop-opacity attribute of a gradient stop control?
A). The opacity level of the stop
B). The position of the stop
C). The size of the stop
D). The color of the stop
How do you apply a linear gradient to a shape in SVG using gradient stops?
A). By setting the fill attribute to the gradient ID
B). By setting the stroke attribute to the gradient ID
C). By setting the fill attribute to the stop-color of the gradient
D). By setting the fill attribute to the offset of the gradient stops
How can you create a repeating gradient effect using gradient stops in SVG?
A). By setting the repeat attribute for stops
B). By duplicating the gradient code multiple times
C). By setting the gradientTransform attribute
D). By using multiple gradient stops with same colors