Which attribute is used to create animations in SVG?
A). <animate>
B). <motion>
C). <transform>
D). <transition>
What is the purpose of the viewBox attribute in SVG?
A). Defines the coordinate system and aspect ratio for the SVG
B). Specifies the fill color of an element
C). Sets the stroke color of an element
D). Determines the width and height of the SVG canvas
Which of the following is a best practice for creating SVG icons and illustrations?
A). Use semantic markup and optimize for performance
B). Use inline styles for all elements and attributes
C). Ignore accessibility considerations
D). Create separate SVG files for each icon
How can you create a gradient fill in SVG?
A). Using the <linearGradient>
or <radialGradient>
elements
B). Using the <pattern>
element
C). Applying CSS styles to SVG elements
D). Using the <filter>
element for gradients
What is the purpose of the <defs>
element in SVG?
A). Defines reusable elements and gradients
B). Specifies the document type
C). Declares the document's width and height
D). Specifies the SVG version
What is the purpose of the <title>
element in SVG?
A). Provides a text description or tooltip for SVG elements
B). Sets the title of the SVG document
C). Defines the font family for text within SVG elements
D). Specifies the language of the SVG content
How can you create a dashed line in SVG?
A). Using the stroke-dasharray attribute
B). Using the stroke-dashoffset attribute
C). Applying a filter to the <line>
element
D). Using the line-style property in CSS
How can you optimize SVG files for web performance?
A). Remove unnecessary code and use compression techniques
B). Embed large images directly into the SVG file
C). Use high-resolution images for better quality
D). Use inline CSS styles for all SVG elements
How can you add text to an SVG graphic?
A). Using the <text>
element
B). Using the <shape>
element
C). Using the <caption>
element
D). Using the <description>
element
Which SVG element is used to create a rectangle?
A). <rect>
B). <circle>
C). <path>
D). <line>