FCPC - Array - PAct3

FCPC - Array - PAct3

University

15 Qs

quiz-placeholder

Similar activities

One Dimensional Arrays

One Dimensional Arrays

9th Grade - University

14 Qs

Java Arrays

Java Arrays

University

15 Qs

Basics of Data Structure

Basics of Data Structure

University

20 Qs

Java Quiz 3

Java Quiz 3

University

15 Qs

Pre - TEST

Pre - TEST

University

15 Qs

JAVA - Arrays

JAVA - Arrays

University - Professional Development

15 Qs

Quiz 8: Arrays&Vector

Quiz 8: Arrays&Vector

University

10 Qs

Bootcamp Day 3 - Java Array

Bootcamp Day 3 - Java Array

University

15 Qs

FCPC - Array - PAct3

FCPC - Array - PAct3

Assessment

Quiz

Computers

University

Hard

Created by

ALVIN CERTEZA

Used 3+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following is FALSE about arrays on Java

A java array is always an object

Arrays in Java are always allocated on heap

Length of array can be changed after creation of array

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the length of the following array: byte[] data = { 12, 34, 9, 0, -62, 88 };

1

6

5

12

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

class Demo1

{

public static void main(String args[])

{

int i[] = new int[10];

System.out.println(i[10]);

}

}

0

Out-of-bounds exception


Garbage Value

Error

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

_________________ is a collection of elements used to store the same type of data.

Array

Case

Switch

Loop

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the first index of an array?

1

2

3

0

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

int [] nums = {2, 3, 5, 8, 9, 11};

How would you access the fourth element in nums?

nums[4]


nums(4)

nums[3]


nums(3)

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

An array declaration can optionally omit the new specifier and explicit size setting if it contains a comma-delimited _______________ inside a set of _______________ after the assignment operator, which will imply its size.

initialization list, parentheses


initialization list, curly braces


parameter list, parentheses

None of the above

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?