write a java statement to initialize an integer array with first five even numbers
Answers
Answered by
0
Answer:
the legal way to declare and initialize an array with five elements.
...
final int k = 4;
public int k = 4;
static int k = 4;
abstract int k = 4;
volatile int k = 4;
protected int k = 4;
Similar questions