Answer:
The code is shown below.
Explanation:
Consider the provide information.
We need to find the perimeter of the triangle.
The perimeter of the triangle is the sum of all sides.
So the perimeter should be: 10 cm + 14 cm + 15 cm = 39 cm
Now we will write a Java program to find the perimeter.
public class MyClass {
public static void main(String args[]) {
int x=10;
int y=14;
int z=15;
int A=x+y+z;
System.out.println("The perimeter of the triangle is 10 cm + 14 cm + 15 cm = " + A+" cm");
}
}
Execute the program and you will get a result like this:
The perimeter of the triangle is 10 cm + 14 cm + 15 cm = 39 cm
Refer to the image for better understanding.
The Answer of the given question : D. Merging
If you want to have certain icons available regardless of what tab your using, you should add them to the [Quick Access Toolbar].
Quick access toolbar is a way in which you can easily access the tool you want to use often.
Motherboard
-------------------------------
Answer:
An array is a collection of similar types of data. For example, if we want to store the names of 100 people then we can create an array of the string type that can store 100 names. String[] array = new String[100];
<h2>HOPE ITS HELPS YOU</h2>