wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Web Apps 01 - CLI (Terminal, Git, Meteor)

Total questions: 15

Worksheet time: 11mins

Name
Class
Date
1.

What is the name of the installer used to install meteor on windows?

a)

Vanillaey

b)

Chocolatey

c)

Strawberry

d)

Raisony

2.

A developer who codes in both the front-end and the back-end is known as

a)

a front-end developer

b)

a back-end developer

c)

a full-stack developer

d)

a web developer

3.

A developer who writes server-side scripts is known as

a)

a front-end developer

b)

a back-end developer

c)

a full-stack developer

d)

a web developer

4.

How to start a meteor app named crayontools?

a)

meteor run crayontools

b)

meteor start crayontools

c)

meteor go crayontools

d)

meteor boot crayontools

5.

Which command shows the contents of a folder on a Windows operating system?

a)

ls

b)

dir

c)

cd

d)

md

6.

Which keyboard key will autocomplete a file/folder name when typing in the terminal?

a)

ctrl

b)

alt

c)

tab

d)

shift

7.

Which command shows the contents of a folder on a Linux operating system?

a)

ls

b)

dir

c)

cd

d)

md

8.

Which command creates a new folder when given the specified name?

a)

ls

b)

dir

c)

cd

d)

md

9.

What is Git?

a)

It is a file backup and recovery software

b)

It is a web-based file backup and recovery software

c)

It is a distributed version-control software

d)

it is a web-based distributed version-control software

10.

Which of the following is the correct way to initialize a new Git repository?

a)

git add .

b)

git init

c)

git commit

d)

git push

11.

Which of the following commands will stage your entire directory and every non-empty directory inside your current directory so we can commit?

a)

git status all

b)

git add .

c)

git commit all

d)

git push origin master

12.

We've just created a new file called index.html. Which of the following will stage this one file so we can commit it?

a)

git add index.html

b)

git add new

c)

git commit index.html

d)

git commit new

13.

How would you commit this with the message "adding new authors to index"

a)

git commit -m "adding new authors to index"

b)

git commit "adding new authors to index"

c)

git add -m "adding new authors to index"

d)

git add "adding new authors to index"

14.

Before you install Git, which of the following prerequisite products must be present and configured on your local OS?

a)

Java Development Kit 1.8 or newer

b)

MeteorJS 1.9 or newer

c)

OS must be up-to-date

d)

None of them

15.

What is the name of the location where your Meteor website resides?

a)

Directory

b)

Folder

c)

Project

d)

App