MCQOPTIONS
Bookmark
Saved Bookmarks
→
C Programming
→
Floating Point Issues in C Programming
→
An Array in Java is a collection of elements of _..
1.
An Array in Java is a collection of elements of ___ data type.
A.
Same
B.
Different
C.
-
D.
-
Answer» B. Different
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
What will be the output of the program in Turbo-C ?
Which of the following statements mentioning the name of the array begins DOES NOT yield the base address?
Which of the following statements are correct about 6 used in the program?
Which of the following statements are correct about an array?
Are the expressions and same for an array of 10 integers?
Is there any difference int the following declarations?
What does the following declaration mean?
Which of the following is the correct output for the program given below?<br> <pre class="prettyprint lang-c">#include<stdio.h><br>int main()<br>{<br> int arr[5] = {12, 23);<br> printf("%d%d%d n", a[2], a[3], a[4]);<br> return 0;<br>}<br></stdio.h></pre>
What will be the output of the following C code?<br><pre class="prettyprint lang-c">#include <stdio.h><br> int main()<br> {<br> int num[3][4][5], k = 12;<br> num[0][0] = &k;<br> printf("%d n", *num[0][0]);<br> }<br></pre>
Which of the following statements are correct about 4 used in the following C expressions?<br><pre class="prettyprint lang-c">int num[4] ;<br>num[4] = 23 ; </pre>
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply