WorksheetsedX Vanderbilt - Day 1 Review
Total questions: 10
Worksheet time: 5mins
What does CLI stand for?
Command Line Interface
Critical Linux Infrastructure
Clone List Index
Create List Index
What does HTML stand for?
Hyper Text Markup Language
High Tech Markup Language
Home Tool Markup Language
Hyperlink Text Language
What is the purpose of CSS?
To create dynamic web pages
To define the structure of a web page
To add interactivity to a web page
To style the elements of a web page
What is the purpose of JavaScript?
To provide the content for a web page
To style the elements of a web page
To add interactivity to a web page
To define the structure of a web page
Which of the following programs is a "version control system" that allows users to safely edit, save, and collaborate with code?
Git
Java
Terminal
Bash
Which of the following command line commands will CREATE a file?
cd
ls
touch
mkdir
Which of the following command line commands will list the files and folders in a directory?
cd
ls
touch
mkdir
Which of the following command line commands would move the user back/up one level or folder in the file system?
cd ..
cd /
git +
git add .
Which of the following git commands would save all staged changes to your code?
git add -A
git commit
git add .
git pull
If you previously cloned (copied) a git repository to your computer from GitHub, edited and committed the files, which of the following commands would send the saved changes in your main branch back to your GitHub repository?
git pull origin clone
git pull origin main
git push origin clone
git push origin main
