-Designing a database for an online retailer
Go here https://www.google.com/search?safe=strict&site=&source=hp&q=Which+Windows+utility+can+be+used+to+fin...
Cross-head cross-point cross recessed
Answer:
Option 2: 100
Explanation:
The given code is regarding a Java array. To create an array in Java, the syntax is as follows:
type [] arrayname = new type[size]
In Java, this is possible to set a size for an array by giving an integer within the bracket. For example, int [] num = new int[100] will set the array size 100 for <em>num</em> . This means the <em>num</em> can hold 100 components within the array.
Once the size is set for an array, the size cannot be changed in later stage.