
Java Arrays
Quiz by Courtney Yatteau
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
41 questions
Show answers
- Q1-type of data structure constructed in memory.An array is a30s
- Q2See image-named set of contiguous memory cells .30s
- Q3- primitive data types such as ints and doubles.An array can store...30s
- Q4See image- object data types such as Strings.30s
- Q5No.Can data types be mixed in an array?30s
- Q6See imageData type must be primitive or object.30s
- Q7- the square brackets [ ].The operator we use in creating an array is...30s
- Q8See image- also called the *ARRAY INDEX OPERATOR*.30s
- Q9datatype [ ] arrayName;Array Syntax:30s
- Q10See image- can also be datatype arrayName [ ];30s
- Q11int [ ] myIntArray = new int [10];To create an array to hold ten values of type int:30s
- Q12No.Can you change the number of elements in an array after it has been created?30s
- Q13See imageOnce created, the array size is fixed, or immutable30s
- Q14arrayName [index number]Each element of an array is identified and can be referenced using this syntax:30s
- Q15The number of elements - 1.The last element of any array will have an index number equal to...30s