Assume you need a variable to store whole numbers. Which of the following data types would you pick? O boolean int Strin
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Assume you need a variable to store whole numbers. Which of the following data types would you pick? O boolean int Strin
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]: