582). What is the purpose of the canvas element?

[A]Creates drawing surface
[B]Exposes powerful drawing API to client-side JavaScript
[C]Creates drawing surface & Exposes powerful drawing API to client-side JavaScript
[D]Creates a rectangular box

Show Answer

583). From which version of IE is canvas supported?

[A]7
[B]8
[C]9
[D]6

Show Answer

584). Which method is used to obtain the “drawing context” object?

[A]getContext()
[B] getObject()
[C]get()
[D]getDrawing()

Show Answer

585). What is the returning value of the getContext() method?

[A]Drawing model
[B]CanvasRenderingContext2D object
[C]Context2D object
[D]Container

Show Answer

586). How does SVG describe complex shapes?

[A]Path of lines
[B]Path of curves
[C]Path of lines and curves
[D]Planes

Show Answer

587). Which is the method invoked to begin a path?

[A]begin()
[B]path()
[C]createPath()
[D]beginPath()

Show Answer

588). Which is the method invoked to connect the last vertex back to the first?

[A]closePath()
[B]close()
[C]connectlast(first)
[D]connect()

Show Answer

589). Which of the following are not the properties of a canvas object?

[A]fillStyle
[B]strokeStyle
[C]lineWidth
[D]lineSize

Show Answer

590). Which of the following is a property used to check how crisp or fuzzy shadows are?

[A]shadowColor
[B]shadowBlur
[C]strokeStyle
[D]stroke

Show Answer

591). How do you restore a saved coordinate system?

[A]restore()
[B]getback()
[C]set()
[D]back()

Show Answer