Arrays en Java

Arrays en Java

Professional Development

10 Qs

quiz-placeholder

Similar activities

Angular basics #02

Angular basics #02

Professional Development

10 Qs

Basic JavaScript (Henry)

Basic JavaScript (Henry)

Professional Development

10 Qs

JavaScript Para react

JavaScript Para react

Professional Development

9 Qs

C4 Week 9 Wednesday

C4 Week 9 Wednesday

Professional Development

11 Qs

SEO

SEO

Professional Development

9 Qs

Introducción a Flutter

Introducción a Flutter

Professional Development

9 Qs

Day5_Arrays

Day5_Arrays

University - Professional Development

12 Qs

JavaScript

JavaScript

Professional Development

10 Qs

Arrays en Java

Arrays en Java

Assessment

Quiz

Other

Professional Development

Hard

Created by

Xabi Vazquez

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is an array in Java?

An array in Java is a data structure that allows you to store multiple values of different types in a single variable.

An array in Java is a data structure that allows you to store multiple values of the same type in a single variable.

An array in Java is a keyword used to declare a variable.

An array in Java is a method used to perform mathematical calculations.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you declare an array in Java?

arrayName[] = new int[];

int arrayName[];

int[] arrayName = new int[];

int[] arrayName;

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you initialize an array in Java?

int[] myArray = new int[5];

int[] myArray = new int[];

int[] myArray = new int[0];

int[] myArray = new int();

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you access an element in an array in Java?

arrayName[index]

arrayName(index)

arrayName{index}

arrayName.index

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you modify an element in an array in Java?

Access the element using its index and assign a new value to it.

Use the 'replace' method to directly modify the element in the array.

Create a new array with the modified element and replace the original array with the new one.

Use the 'remove' method to delete the element and then add a new element with the modified value.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the index of the first element in an array in Java?

0

null

-1

1

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the index of the last element in an array in Java?

length - 1

length

length - 2

length + 1

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?