Which proportion correctly relates the measurements from the…

Which proportion correctly relates the measurements from the similar figures?  Note: A geometric diagram shows a large triangle with vertices L, M, and N. Segment LM is vertical on the left and labeled 15 centimeters. Segment MN is a horizontal base extending from M on the left to N on the right and is not labled with any values. Point A lies on segment MN between M and N. Segment LN is a slanted side connecting L to N. Point P lies on segment LN between L and N. The portion from L to P is labeled 18 centimeters, and the portion from P to N is labeled 12 centimeters. A vertical segment drops from point P down to point A on the base MN. This segment is labeled x centimeters. Triangle PAN is shaded and shares the slanted side PN and the base segment AN with the larger triangle LMN.

Which proportion correctly relates the measurements from the…

Which proportion correctly relates the measurements from the similar figures?  A geometric diagram shows two quadrilaterals placed side by side. The smaller quadrilateral on the left is labeled A, B, C, and D. Point A is on the top left, B on the top right, C on the bottom right, and D on the bottom left. The top side AB is longer than the bottom side CD. The sides AD and BC slope inward as they move downward to the bottom side. Side AB is labled with a length of 24 inches and side AD is labled with a length of 38 inches. The larger quadrilateral on the right is labeled E, F, G, and H. Point E is on the bottom left, F on the bottom right, G on the top right, and H on the top left. The bottom side EF is longer than the top side GH. The sides EH and FG slope outward as they move downward to the bottom side. Side EF is labled with a length of 36 inches and side EH is labled with the variable x.

Find the coordinates for the dilation of the figure shown if…

Find the coordinates for the dilation of the figure shown if the scale factor is . Enter any fractions as a/b. : [answer1] : [answer2] : [answer3] : [answer4] A coordinate plane shows a four-sided figure extending across both sides of the y-axis. The vertices are labeled A, M, E, and D. Point A at the lower-left is at (-10, -2), point M at the upper-left is at (-3, 6), point E at the upper-right is at (10, 6), and point D a tthe lower-right is at (3, -2). The top and bottom sides are horizontal.

Consider the following class definition.   public class Thin…

Consider the following class definition.   public class Thing{ public void talk() { System.out.print(“Hello “); } public void name() { System.out.print(“my friend”); } public void greet() { talk(); name(); } /* Constructors not shown */}   Which of the following code segments, if located in a method in a class other than Thing, will cause the message “Hello my friend” to be printed?