Answer:
A. append()
Explanation:
I don't know python fully but i do know what stuff means
Print: display text
Main: basically the roots of the entire code
Sort: it's in the freaking name
so crossing out 3 of the 4 its safe to assume its append.
A correlation is a consistent relationship between two or more variables. It relates to our tendency to draw causation from mere correlation.
Answer:
Java code is given below
Explanation:
import java.util.Random;
class Die{
private int sides;
public Die(){
sides = 6;
}
public Die(int s){
sides = s;
}
public int Roll(){
Random r = new Random();
return r.nextInt(6)+1;
}
}
class DieRoll{
public static void main(String[] args) {
Die die = new Die();
int arr[] = new int[6];
for(int i=0; i<6; i++)
arr[i] = 0;
for(int i=0; i<100; i++){
int r = die.Roll();
arr[r-1]++;
}
for(int i=0; i<6; i++)
System.out.println((i+1)+" was rolled "+arr[i]+" times.");
}
}