Unit 1
Unit 2
Unit 3
Unit 4
RANDOM
100

You can use ________ to format a number or variable to be displayed on the console.

printf

100

________ methods are procedures, techniques, aids, or tools for designing solutions to questions or problems.

Design

100

_________ are used to store multiple values in a single variable, instead of declaring separate variables for each value.

Arrays

100

A _________ algorithm is used to arrange data into some order.

sorting

100

When should you place your phone in our class pocket phone caddy?

When I walk into class. (Do that now if you haven't yet)

200

Which escape character will move the following output to a new line

\n

200

What does SDLC stand for?

Software Development Life Cycle

200

What is the index of 8?

int[] intArray = {3, 8, 0, 5};

1

200

A ________ algorithm is a method of locating a specific item in a larger collection of data.

search

200

When programmers debug, they often talk to...

rubber ducks

300

A for loop has _______ parts in the parentheses of its header.

three
300

The ___________ method means that we complete on step, then another, then another, and so on.

waterfall
300

What is the output of the following piece of code?

String[] names={"Buffy", "Willow", "Xander", "Giles"};

System.out.println(names.length);

4

300

Which sorting algorithm did we learn in class before Christmas break?

Selection Sort

300

What is Mrs. Staffen's first name? 

Wendy. But don't call her that.

400

What does the following piece of code output?

System.out.print(Math.sqrt(64)); 

8.0

400

With the _______ method, you repeat the design, develop, test, deploy, and review steps several times before launching your product.

Agile

400

What is the output for the following piece of code?

int[][] my2dArray = {{1, 2, 3, 4}, {5, 6, 7, 8}};

int x = my2dArray[1][2];

7

400

Name 2 sorting algorithms we have not yet learned but referenced.

Insertion sort, bubble sort, or merge sort.
400

How many dogs does Mrs. Staffen have?

two! 
500

A ________ loop is just when you have one loop inside another loop.

nested

500

________ is a subset of the agile methodology. While it’s also an iterative process, it actually supports fixed-length iterations – also called sprints.

SCRUM

500

To access an element in the ArrayList, you can use the _______ method and refer to the index number of the element you want to access.

get()

500

If you have an array with the values 5, 7, 2, 8, 9, 1 what would happen first when you apply selection sort?

Locate the smallest value at index 5 (which is 1) and switch it with the value at index 0 (which is 5) to get 1, 7, 2, 8, 9, 5

500

Mrs. Staffen is expecting a baby. When is she leaving? 

Middle/End of March.