Answer:
Following are the program to this question:
import java.util.*; //import package
public class Main //defining class
{
public static void main(String[] args) //defining main method
{
int testedEmployee; //defining integer variable
for(int i = 1;i<=52;i++) //defining loop that counts from 1 to 52
{
testedEmployee = 1 + (int) (Math.random() * 30); //using random method that calculate and hold value
System.out.print(testedEmployee+"\t"); //print value
if(i%4 == 0)//defining codition thats checks value is divisiable by 4
{
System.out.println(); //print space
}
}
}
}
Output:
please find the attachment.
Explanation:
In the given java program, a class Main is declared, inside the class, the main method is declared, in which an integer variable "testedEmployee", is declared, in the next line, the loop is declared, that can be described as follows: