Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 2 KB

homework.md

File metadata and controls

28 lines (19 loc) · 2 KB

Linus's Homework

1. What is 2 + 2?

I have 2 answer. a) 4 b) 5 If wi divide this problem into the concept: numbers and value. Then the numbers will be presented as the number of values. We will get the result "5" by the formula ("2" number of values "+" (as one value) "2" number of values, then the answer will be "5").

2. What is JavaScript?

JavaScript is a powerful and flexible programming language for the web that is widely used to make websites interactive and dynamic. JavaScript can also able to change or update HTML and CSS dynamically. JavaScript can also run on servers using tools like Node.js, allowing developers to build entire applications with it.

3. What three problems does Git & GitHub solve?

We have several rules to solve a problems. https://gist.github.com/neaxi/da4b74fd827fde3095d9123a749f5207#rules-to-problem-solving

4. What happens when you fork a repository?

Forking a repository on GitHub allows you to create a personal copy of someone else's project. This is useful for proposing changes, experimenting with new ideas, or using someone else's project as a starting point for your own work. Here's a step-by-step guide on how to fork a repository: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo

5. What happens when you clone a repository?

When you clone a repository, you copy the repository from GitHub.com to your local machine. Cloning a repository pulls down a full copy of all the repository data that GitHub.com has at that point in time, including all versions of every file and folder for the project. https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository

6. What is a Pull Request?

Pull requests (PRs) are a fundamental part of collaborative development in Git and are widely used across platforms like GitHub, GitLab, and Bitbucket. A pull request is a mechanism that allows developers to notify others about changes they’ve made to a branch in a Git repository.

the