No student devices needed. Know more
15 questions
What is the name of the installer used to install meteor on windows?
Vanillaey
Chocolatey
Strawberry
Raisony
A developer who codes in both the front-end and the back-end is known as
a front-end developer
a back-end developer
a full-stack developer
a web developer
A developer who writes server-side scripts is known as
a front-end developer
a back-end developer
a full-stack developer
a web developer
How to start a meteor app named crayontools?
meteor run crayontools
meteor start crayontools
meteor go crayontools
meteor boot crayontools
Which command shows the contents of a folder on a Windows operating system?
ls
dir
cd
md
Which keyboard key will autocomplete a file/folder name when typing in the terminal?
ctrl
alt
tab
shift
Which command shows the contents of a folder on a Linux operating system?
ls
dir
cd
md
Which command creates a new folder when given the specified name?
ls
dir
cd
md
What is Git?
It is a file backup and recovery software
It is a web-based file backup and recovery software
It is a distributed version-control software
it is a web-based distributed version-control software
Which of the following is the correct way to initialize a new Git repository?
git add .
git init
git commit
git push
Which of the following commands will stage your entire directory and every non-empty directory inside your current directory so we can commit?
git status all
git add .
git commit all
git push origin master
We've just created a new file called index.html. Which of the following will stage this one file so we can commit it?
git add index.html
git add new
git commit index.html
git commit new
How would you commit this with the message "adding new authors to index"
git commit -m "adding new authors to index"
git commit "adding new authors to index"
git add -m "adding new authors to index"
git add "adding new authors to index"
Before you install Git, which of the following prerequisite products must be present and configured on your local OS?
Java Development Kit 1.8 or newer
MeteorJS 1.9 or newer
OS must be up-to-date
None of them
What is the name of the location where your Meteor website resides?
Directory
Folder
Project
App
Explore all questions with a free account