Answer & Solution
<canvas> element is used to create an HTML5 Canvas.
<canvas> element is used to create an HTML5 Canvas.
How can images be loaded and displayed on an HTML5 Canvas?
A). A. Using <img> tag
B). B. Using loadImage() function
C). C. Using drawImage() method
D). D. Using addImage() method
What is the purpose of the beginPath() method in canvas drawing?
A). A. To start a new canvas
B). B. To begin a new path
C). C. To end the canvas
D). D. To clear the canvas
How can developers handle user interactions on an HTML5 Canvas?
A). A. Using CSS transitions
B). B. Using jQuery events
C). C. Using JavaScript event listeners
D). D. Using canvas plugins
Which method is used to clear the entire canvas?
A). A. resetCanvas()
B). B. clear()
C). C. eraseCanvas()
D). D. clearRect()
How can text be added to an HTML5 Canvas?
A). A. Using <text>element
B). B. Using <p>element
C). C. Using drawText() method
D). D. Using fillText() method
Which attribute is used to specify the width of an HTML5 Canvas?
A). A. height
B). B. size
C). C. width
D). D. dimension
What is required to draw on an HTML5 Canvas?
A). A. CSS file
B). B. JavaScript code
C). C. HTML table
D). D. PHP script
What does the fill() method do in canvas drawing?
A). A. Draws a rectangle
B). B. Draws a line segment
C). C. Fills the current path with the current fill style
D). D. Adds text
Which method is used to draw a rectangle on an HTML5 Canvas?
A). A. drawRect()
B). B. createRectangle()
C). C. rect()
D). D. fillRect()
Which method is used to draw a circle on an HTML5 Canvas?
A). A. drawCircle()
B). B. circle()
C). C. arc()
D). D. createCircle()