Question No. 1 : <p>What is the purpose of git?</p>
Correct Answer : কোড যাতে হারায় না যায় এবং একাধিকজন একই কোডে কাজ করা সহজ করতে
Question No. 2 : <p>What is the right command to check the git version?</p><p><span style="background-color: transparent; color: rgb(0, 0, 0);">Hint: This is the command that you will need to check whether git is installed properly or not. Your answer will have the word git and also will have the word version.</span></p>
Correct Answer : git --version
Question No. 3 : <p>What is the command to commit code with the message “final code”:</p>
Correct Answer : git commit -m “final code”
Question No. 4 : <p>Which command will you use to start (initialize) a new git repository?</p>
Correct Answer : git init
Question No. 5 : <p>Which one is related to hosting a page in github?</p>
Correct Answer : Github Pages
Question No. 6 : <p>Why will you consider clearing my browser cache?</p>
Correct Answer : Remove older data from a website
Question No. 7 : <p>What is the purpose of git branching? (though the video is marked as advanced, you will need to watch the video)</p>
Correct Answer : Separate a small feature from main code
Question No. 8 : <p>Which command will you use to create a new branch from the existing branch named "new-button-update"</p>