InterviewSolution
Saved Bookmarks
| 1. |
How does SVG describe complex shapes?(a) Path of lines(b) Path of curves(c) Path of lines and curves(d) Planes |
|
Answer» The correct choice is (c) Path of lines and curves To explain I would say: SVG stands for ‘Scalable Vector Graphics’ and it is used to define graphics for the Web. SVG is mostly used for vector type diagrams like Two-dimensional graphs in an X, Y coordinate system, Pie charts etc. SVG describes complex shapes as a “path” of lines and curves that can be drawn or filled. |
|