Tip

Tap
a student's name
below to see what they need help with
Quizalize logo
placeholder image to represent content

Java Arrays

Quiz by Courtney Yatteau

Feel free to use or edit the questions

includes Teacher and Student dashboards

Measure skills
from any curriculum

Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.

Q 1/41
Score 0
-type of data structure constructed in memory.
30
An array is a
Incorrect answers will be populated from other questions

41 questions

Q.-type of data structure constructed in memory.
1
30 sec
Q.See image
2
30 sec
Q.- primitive data types such as ints and doubles.
3
30 sec
Q.See image
4
30 sec
Q.No.
5
30 sec
Q.See image
6
30 sec
Q.- the square brackets [ ].
7
30 sec
Q.See image
8
30 sec
Q.datatype [ ] arrayName;
9
30 sec
Q.See image
10
30 sec
Q.int [ ] myIntArray = new int [10];
11
30 sec
Q.No.
12
30 sec
Q.See image
13
30 sec
Q.arrayName [index number]
14
30 sec
Q.The number of elements - 1.
15
30 sec
Q.9.
16
30 sec
Q.Element #0
17
30 sec
Q.String[ ] surNameArray = new String [25];
18
30 sec
Q.-the word "Array" at the end of the variable name to indicate that this variable is an array.
19
30 sec
Q.myIntArray[0]= 5;
20
30 sec
Q.By enclosing the data values inside curly braces.
21
30 sec
Q.String [ ] monthsArray = {"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct", "Nov","Dec"};
22
30 sec
Q.Java will automatically assign a default value to each element.
23
30 sec
Q.A for loop.
24
30 sec
Q.length.
25
30 sec
Q.See image
26
30 sec
Q.See image
27
30 sec
Q.Using <= will send you out of bounds.
28
30 sec
Q.Starting the count at 1 would skip the first element in the array.
29
30 sec
Q.See image
30
30 sec
Q.See image
31
30 sec
Q.Math.random( )
32
30 sec
Q.0.0000 up to 0.999999999999999.
33
30 sec
Q.See image
34
30 sec
Q.int randomInt = (int)(Math.random( ) * 10);
35
30 sec
Q.See image
36
30 sec
Q.After multiplying by 10, add 1 to the result, then cast to an int.
37
30 sec
Q.(int)(Math.random() * (highValue - lowValue + 1) + lowValue);
38
30 sec
Q.(int)(Math.random() * (15 - 5 + 1) + 5);
39
30 sec
Q.See image
40
30 sec
Q.See image
41
30 sec

Give this quiz to my class