Multiple choice What is the syntax of drawLine() method of Canvas? g.drawLine(0, 4, 5, 16); canvas.drawLine(56, 0, 56, 100, paint); drawLine(4, 5, 6, 7); drawLines(x[], y[], count); None of these Reveal answer Fill a bubble to check yourself B Correct answer Explanation canvas.drawLine(56, 0, 56, 100, paint); is valid in android.