D Question 15 PART B. Multuple Choise (48 points) Which best completes the statement, or answers the question? 15. What
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
D Question 15 PART B. Multuple Choise (48 points) Which best completes the statement, or answers the question? 15. What
Question 15 PART B. Multuple Choise (48 points) Which best completes the statement, or answers the question? 15. What is the proper way to declare an array alpha of 11 elements of type int O int[] alpha= new int[11]: O int[11] alpha= new int[]; O int[] alpha= new int[10]; O int[] alpha= new int[12]; Question 16 16. To assign a double variable dVal to a float variable fX, you write (double) FX- dVal; fX== (float) dVal; fX=(float) dVal; (double) fX== dVal; fX=dVal;
D