Topic 6.1 Video 1

Topic 6.1 Video 1

11th Grade

6 Qs

quiz-placeholder

Similar activities

Quiz on Array

Quiz on Array

11th - 12th Grade

10 Qs

CodeHS 5.3 Using Arrays

CodeHS 5.3 Using Arrays

9th - 12th Grade

11 Qs

Trabajando con ArrayList

Trabajando con ArrayList

9th - 12th Grade

11 Qs

Advanced Java Study Guide

Advanced Java Study Guide

11th - 12th Grade

10 Qs

CodeHS 5.4 & 5.5 ArrayList Stuff

CodeHS 5.4 & 5.5 ArrayList Stuff

9th - 12th Grade

10 Qs

ArrayList

ArrayList

10th - 12th Grade

11 Qs

Java Exceptions

Java Exceptions

11th - 12th Grade

10 Qs

Heap

Heap

9th - 12th Grade

10 Qs

Topic 6.1 Video 1

Topic 6.1 Video 1

Assessment

Passage

Computers

11th Grade

Easy

Created by

Myra Deister

Used 3+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Did you view the video from beginning to end without increasing the speed?

Yes

No

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a java array?

A java array is a type of coffee drink
A java array is a type of tropical fruit
A java array is a type of programming language

An array in Java is a collection of the same type of elements.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is an element?

A method used to access the array
A string of characters in the array
The total number of elements in the array
A specific value stored at a particular index within the array

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is an index?

The name of the array
The data type of the array
The size of the array
Position of an element within the array

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

double [ ] myRate = new double [5];

System.out.println (myRate[myRate.length]);

What is the output?

IndexOutOfBoundsException
NullPointerException

0.0

ArrayIndexOutOfBoundsException

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int [] myData = {2, 18, 3, 7, 8};

System.out.println(myData.length);

What is the output?

2

6

5

4