| package-info.java |
/**
* PRAXIS INFO
* This is a refresher on arrays for those who have forgotten it and also brings
* out some subtleties in object arrays for whose who have not seen object arrays.
* For those who know arrays well, just answer the quiz questions.
*
* Visit the @WebDocuments({"Lectures/Arrays.pptx", "Lectures/Arrays.pdf", "Videos/Arrays.avi"})
class ArrayLifeCycle
*
* SAKAI QUIZ
*
* The element type of an array
* (a) must be a primitive type.
* (b) must be an object type.
* (c) can be a primitive or object type.
*
* (T/F) It is possible for an array variable to have
* the null value.
*
* (T/F) It is possible for an array to have no elements.
*
* (T/F) It is possible for an array object to have null elements.
*
* (T/F) The size of an array can change dynamically during program
execution.
* (T/F) The pointer or address of an array object changes each time an
* element of it changes.
*
* (T/F) The size of an array object changes each time an element of it changes.
*
* (T/F) The pointer of an array element can change when an assignment is
* made to the element.
*
*
*/
package lectures.arrays;
import util.annotations.WebDocuments;
/*
*
*/