Assume you need a variable to store whole numbers. Which of the following data types would you pick? O boolean int Strin
Posted: Tue Jul 12, 2022 8:20 am
would you pick?
Declare a variable of type char named letter.
Which of the following declares and initializes a one-dimensional (int array named array ofsize 5
Which of the following declares and initializes a one-dimensional (int array named array of
size 5
Please answer all 3. Thamk you
Assume you need a variable to store whole numbers. Which of the following data types would you pick? O boolean int String char float
Declare a variable of type char named letter.
Which of the following declares and initializes a one-dimensional int array named array of size 5. [int] array = new [int]5: int[5] array: int[] array new int[5]; O int array = new int[5]: