Launchpad programming - day 11 morning (JS)

Launchpad programming - day 11 morning (JS)

University

6 Qs

quiz-placeholder

Similar activities

Java Arrays

Java Arrays

University

10 Qs

Python Quiz - 6

Python Quiz - 6

University

10 Qs

CMP128 Java Ch. 07 Arrays

CMP128 Java Ch. 07 Arrays

University

10 Qs

Array Quiz 2

Array Quiz 2

University

10 Qs

Data Structure

Data Structure

University

10 Qs

Graph

Graph

University

10 Qs

DSA(UNIT 1) Test 1

DSA(UNIT 1) Test 1

University

10 Qs

Quiz 6

Quiz 6

University

10 Qs

Launchpad programming - day 11 morning (JS)

Launchpad programming - day 11 morning (JS)

Assessment

Quiz

Computers

University

Medium

Created by

Steve Rich

Used 7+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Why is version control important?

Version control is important for optimising code performance and efficiency.

Version control is important for managing project deadlines and milestones.
Version control is important for ensuring data security and privacy.
Version control is important for collaboration, tracking changes, reverting to previous versions, and maintaining a history of development.

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Which is the most popular version control solution?

CVS
Mercurial
Subversion
Git

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What is a 2D array?

A list of numbers
A single value
An array of arrays
A string of characters

4.

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

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

Consider the following 2D array. What will be the output of the following code snippet?

console.log(matrix[0][1] + matrix[2][0]);

8

9

10

12

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

Consider the following 2D array.

What will be the output of the following code snippet?

console.log(matrix[1][0] * matrix[2][1]);

11

15

18

30