Menu

Arrays Questions

MCQ
81.
How do you initialize an array in C?
forum Discussion
MCQ
82.
How do you instantiate an array in Java?
forum Discussion
MCQ
83.
Which of the following is a correct way to declare a multidimensional array in Java?
forum Discussion
MCQ
84.
What is the output of the following piece of code?

public class array
{
 public static void main(String args[])
 {
  int []arr = {1,2,3,4,5};
  System.out.println(arr[2]);
  System.out.println(arr[4]);
 }
}
forum Discussion
MCQ
85.
What is the output of the following piece of code?

public class array
{
 public static void main(String args[])
 {
  int []arr = {1,2,3,4,5};
  System.out.println(arr[5]);
 }
}
forum Discussion
MCQ
86.
When does the ArrayIndexOutOfBoundsException occur?
forum Discussion
MCQ
87.
Which of the following concepts make extensive use of arrays?
forum Discussion
MCQ
88.
What are the advantages of arrays?
forum Discussion
MCQ
89.
What are the disadvantages of arrays?
forum Discussion
MCQ
90.
What is a bit array?
forum Discussion