Math, asked by RAJIVJAIN2978, 7 months ago

Manuela claims that Segment A B and Segment P Q are congruent.
On a coordinate plane, segment P Q goes from (negative 3, negative 1) to (negative 3, 3) and segment A B goes from (0, 1) to (3, 1).
Which statement best describes her claim?

Answers

Answered by Anonymous
7

Answer:

function startGame() {</p><p>  myGamePiece = new component(30, 30, "red", 10, 120);</p><p>  myGamePiece.gravity = 0.05;</p><p>  myScore = new component("30px", "Consolas", "black", 280, 40, "text");</p><p>  myGameArea.start();</p><p>}</p><p></p><p>var myGameArea = {</p><p>  canvas : document.createElement("canvas"),</p><p>  start : function() {</p><p>    this.canvas.width = 480;</p><p>    this.canvas.height = 270;</p><p>    this.context = this.canvas.getContext("2d");</p><p>    document.body.insertBefore(this.canvas, document.body.childNodes[0]);</p><p>    this.frameNo = 0;</p><p>  },</p><p>  clear : function() {</p><p>    this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);</p><p>  }</p><p>}

Similar questions