Answer:
SpringBreak.java
Explanation:
Java classes are saved in files having the same name as the class name.
So if the given class structure is:
public class SpringBreak{
// lots of code here
}
It needs to be saved in a file called SpringBreak.java.
The physical file should follow the package structure as provided in the class.
The java file will be compiled by the java compiler to generate the corresponding class file.
The balance exercises used for introducing balance training should initially involve little joint motion and improve the Reflexive (automatic) joint-stabilization contractions.
<h3>What is the main goal of balance training?</h3>
Balance training is known to be a kind of an exercise where a person that is doing the exercises works out so as to strengthen the muscles that aids them to keep to be upright, such as their legs and core.
Note that kinds of exercises are done so as to improve stability and help hinder falls.
Therefore, The balance exercises used for introducing balance training should initially involve little joint motion and improve the Reflexive (automatic) joint-stabilization contractions.
Learn more about balance exercises from
brainly.com/question/16218940
#SPJ1
Answer:
musical works, dramatic works, literary works, sound recordings.
Answer:
Following are the program in c language
#include<stdio.h> // header file
int main() // main function
{
int ar[10],k,biggest; // variable declaration
printf("Enter the ten values:\n");
for (k = 0;k < 10; k++)
{
scanf("%d", &ar[k]); // user input of 10 number
}
biggest = ar[0]; // store the array index of 0 into biggest variable
for (k = 0; k< 10; k++) // finding the biggest number
{
if (ar[k] >biggest)
{
biggest = ar[k];
}
}
printf(" biggest num is %d", biggest); // display the biggest number
return 0;
}
Output:
Enter the ten values:
12
2
4
5
123
45
67
453
89
789
biggest num is 789
Explanation:
Here we declared an array ar[10] of type int which store the 10 integer values.
Taking 10 integer input from the user in array ar .After that iterating the loop and finding the biggest number by using if statement and store the biggest number in biggest variable .
Finally display biggest number.