Launchpad programming - day 11 morning (JS)

Launchpad programming - day 11 morning (JS)

University

6 Qs

quiz-placeholder

Similar activities

Quizzical Quizzes are Quizzling

Quizzical Quizzes are Quizzling

University

6 Qs

PRG1 - Day 7 Starter

PRG1 - Day 7 Starter

University

6 Qs

Q7 - Soft Eng 2

Q7 - Soft Eng 2

University

10 Qs

MLP - ICTAK Skill Quiz - Coding Skills

MLP - ICTAK Skill Quiz - Coding Skills

University

10 Qs

FGCT4023 Topic 4 - Array

FGCT4023 Topic 4 - Array

University

10 Qs

CMP128 Java Ch. 07 Arrays

CMP128 Java Ch. 07 Arrays

University

10 Qs

Kuis Susulan ASD

Kuis Susulan ASD

University

10 Qs

Topic 7-2: 2D Array

Topic 7-2: 2D Array

University

6 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