Quiz 01

Quiz 01

University

18 Qs

quiz-placeholder

Similar activities

quiz 2nd/3rd year

quiz 2nd/3rd year

University

21 Qs

Основы Python

Основы Python

University

19 Qs

Think it through

Think it through

University - Professional Development

16 Qs

Java Quiz based on array

Java Quiz based on array

University

15 Qs

Computer Quiz

Computer Quiz

12th Grade - University

16 Qs

Array Addresses 2024

Array Addresses 2024

University

20 Qs

EXCEPTION HANDLING IN PYTHON

EXCEPTION HANDLING IN PYTHON

University

22 Qs

ARRAY

ARRAY

University

22 Qs

Quiz 01

Quiz 01

Assessment

Quiz

Computers

University

Medium

Created by

Mclyn Rinon

Used 26+ times

FREE Resource

18 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the primary purpose of an array in Java?

To create a dynamic list of elements

To store multiple data items of the same datatype

To perform mathematical operations

To store multiple data items of different datatypes

2.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which of the following is the correct way to declare an array in Java?

int ages[];

int[] ages;

int ages;

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What happens if you try to access an index greater than the size of an array?

The program will terminate without an error

An array-index-out-of-bounds exception will occur

The value will be set to zero

The program will return a null value

4.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

How do you instantiate an array in Java?

int numbers= new int[100];

int[] numbers= new int[100];

int numbers[] = new int[100];

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the index of the last element in an array of size n?

n

n+1

n-1

0

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements is true about array length?

The length of an array is always 0

The length of an array is fixed once initialized

The length of an array can be accessed using arrayName.size

You can change the length of an array after instantiation

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a multidimensional array?

An array of arrays

An array that can hold multiple data types

An array that only holds integers

An array that can change size dynamically

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?