PRG1 - Day 11 Starter

PRG1 - Day 11 Starter

University

5 Qs

quiz-placeholder

Similar activities

Python Panda 2

Python Panda 2

11th Grade - Professional Development

10 Qs

Prob. prog 2

Prob. prog 2

University

10 Qs

CHAPTER 3: STACK

CHAPTER 3: STACK

University

10 Qs

Pointer Basic in C/C++

Pointer Basic in C/C++

University

10 Qs

R Quiz

R Quiz

University

10 Qs

Java Static

Java Static

University

10 Qs

C Program Array and strings

C Program Array and strings

University

10 Qs

unit3 pointers

unit3 pointers

University

10 Qs

PRG1 - Day 11 Starter

PRG1 - Day 11 Starter

Assessment

Quiz

Computers

University

Easy

Created by

Steve Rich

Used 9+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a 2D array?

A 2D array is an array of arrays.

A 2D array is a single-dimensional array.
A 2D array is a collection of strings.
A 2D array is a type of function in programming.

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

Consider the following 2D array.

What will be the output of matrix[1][2]?

1

5

6

8

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Consider the following 2D array. What will be the output of:

matrix[0][1] + matrix[2][0]

8

9

10

12

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Consider the following 2D array.

What will be the output?

matrix[1][0] * matrix[2][1]

11

18

15

30

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

It's currently X's turn. Which of the following moves represents the BEST move for X to make?

board[0][2]

board[1][0]

board[2][2]

board[2][1]