Answer :
A single statement that declares and initializes an array named a that has 10 elements of type int. is as:
int [] denominations = {10,20,30,40,50,60,70,80,90,100};
We know that there are two ways you can declare and initialize as array in Java.
The first with the new keyword, where you have to initialize the values one by one.
The second is by putting he values in curly brackets.
An Array is a collection of data of the same type. Arrays are an important part of the fundamental data structures in Java.
An Array is usually declared so you can have multiple values in the same memory.
The syntax for declaring an array is: datatype[] arrayName;
Datatype means the type of objects that will be stored in the array ed. int, char,etc.
You can declare an array of arrays by following the array declarator with a list of bracketed constant expressions.
To know more about array here
https://brainly.com/question/15210447
#SPJ4