Answer:
/*
Find Largest and Smallest Number in an Array Example
This Java Example shows how to find largest and smallest number in an
array.
*/
public class FindLargestSmallestNumber {
public static void main(String[] args) {
//array of 10 numbers
int numbers[] = new int[]{32,43,53,54,32,65,63,98,43,23};
//assign first element of an array to largest and smallest
int smallest = numbers[0];
int largetst = numbers[0];
for(int i=1; i< numbers.length; i++)
{
if(numbers[i] > largetst)
largetst = numbers[i];
else if (numbers[i] < smallest)
smallest = numbers[i];
}
System.out.println("Largest Number is : " + largetst);
System.out.println("Smallest Number is : " + smallest);
}
}
/*
Output of this program would be
Largest Number is : 98
Smallest Number is : 23
*/
Explanation:
An example of revolving credit is C
Self respresentation skills such as proper dress and punctuality demonstrate to a company that you will take your job seriously. It is important to meet deadlines and manage your time accordingly.
Answer:
height = int(input ("Enter height : ") )
print (height)
width = int( input("Enter length : ") )
print (width)
half_width =width/2
half_height=height/2
while 0==0:
radius = float( input("Enter radius : ") )
print (radius)
if radius<half_width and radius <half_height:
break
def remainingVolume(height,width,radius):
vol_box=height*width*width
print (vol_box)
vol_hole=3.14178*radius*radius*height
print (vol_hole)
remaining_vol=vol_box-vol_hole
print ("Remaining volume is ",remaining_vol)
remainingVolume(height,width,radius);
Explanation:
Take input from user for height ,width and radius. To find volume of box formula is 
Let's assume width and length is same so
length= width
Using this formula of box volume find box volume.Now find volume of hole.
Consider hole as small cylinder, find volume of cylinder and subtract from volume of box to get remaining volume of box after hole.

Answer:
The answer is "A) Age in 20 years"
Explanation:
Assuming currentAge is declared and is an integer, you are adding 20 to your current age which means it will print your age in 20 years.