List of problem statements enough to get your hands dirty on git. These are the list of commands that you mostly use in your development.
Problem 1
Initialize a Repository.
Setup user details globally.
Setup project specific user details.
Check Configuration β List the configurations.
Problem 2
Add Specific files. Create two files app.js and style.css. User git add to stage only style.css . This allows selective addition of files to the staging area before committing.
Stage all files except one.
Problem 3
Commit with a message
Amend a commit
Commit without staging
Problem 4
Create a Branch
Create a new branch named feature/api to work on a feature independently without affecting the main branch.
Delete a branch.
Force delete a branch.
Rename a branch.
List all branches.
Problem 5
Switch to a branch
Switch to the main branch using git checkout.
Create and switch to a branch
Create a new branch named bugfix/001 and switch to it in a single command with git checkout -b.
Problem 6
Start with a repository containing a file named project.txt
Create two branches (feature-1 and feature-2) from the main branch.
Make changes to project.txt in both branches.
Attempt to merge feature-1 and feature-2 into the main branch.
Resolve any merge conflicts and complete the merge process.
Problem 7
View history in one-line format
Graphical commit history
Filter commits by Author
Show changes in a commit
Problem 8
Fetch updates from remote
Fetch and Merge
Fetch changes from the remote branch origin/main and merge them into your local main
List remote references
Problem 9
Create a stash
Apply a stash
Pop a stash
View stash
Problem 10
You need to undo the last commit but want to keep the changes staged for a new commit. What will you do ?
Problem 11
You realize you staged some files for commit but want to unstage them while keeping the changes in your working directory. Which git command will allow you to unstage the files without losing any change ?
Problem 12
You decide to completely discard all local changes and reset the repository to the state of the last commit. What git command should you run to discard all changes and reset your working directory ?
Install Docker on your local machine. Verify the installation by running the hello-world container.
Pull the nginx image from Docker Hub and run it as a container. Map port 80 of the container to port 8080 of your host.
Create a Dockerfile for a simple Node.js application that serves βHello Worldβ on port 3000. Build the Docker image with tag my-node-app and run a container. Below is the sample index.js file.
const express = require('express');
const app = express();
app.get('/', (req, res) => {
res.send('Hello World');
});
app.listen(3000, () => {
console.log('Server is running on port 3000');
});
4. Tag the Docker image my-node-app from Task 3 with a version tag v1.0.0.
5. Push the tagged image from Task 4 to your Docker Hub repository.
6. Run a container from the ubuntu image and start an interactive shell session inside it. You can run commands like ls, pwd, etc.
7. Create a Dockerfile for a Go application that uses multi-stage builds to reduce the final image size. The application should print βHello Dockerβ. Sample Go code.
package main
import "fmt"
func main() {
fmt.Println("Hello Docker")
}
8. Create a Docker volume and use it to persist data for a MySQL container. Verify that the data persists even after the container is removed. Try creating a test db.
9. Create a custom Docker network and run two containers (e.g., nginx and mysql) on that network. Verify that they can communicate with each other.
10. Create a docker-compose.yml file to define and run a multi-container Docker application with nginx as a web server and mysql as a database.
11. Scale the nginx service in the previous Docker Compose setup to run 3 instances.
12. Create a bind mount to share data between your host system and a Docker container running nginx. Modify a file on your host and see the changes reflected in the container.
13. Add a health check to a Docker container running a simple Node.js application. The health check should verify that the application is running and accessible.
Sample Healthcheck API in node.js,
const express = require('express');
const app = express();
// A simple route to return the status of the application
app.get('/health', (req, res) => {
res.status(200).send('OK');
});
// Example main route
app.get('/', (req, res) => {
res.send('Hello, Docker!');
});
// Start the server on port 3000
const port = 3000;
app.listen(port, () => {
console.log(`App is running on http://localhost:${port}`);
});
14. Modify a Dockerfile to take advantage of Dockerβs build cache, ensuring that layers that donβt change are reused.
15. Run a PostgreSQL database in a Docker container and connect to it using a database client from your host.
16. Create a custom Docker network and run a Node.js application and a MongoDB container on the same network. The Node.js application should connect to MongoDB using the container name.
Create a set named rose_garden containing different types of roses: "red rose", "white rose", "yellow rose". Print the same.
Add "pink rose" to the rose_garden set. Print the set to confirm the addition.
Remove "yellow rose" from the rose_garden set using the remove() method. Print the set to verify the removal.
Create another set botanical_garden with elements "sunflower", "tulip", and "red rose". Find the union of rose_garden and botanical_garden and print the result.
Find the intersection of rose_garden and botanical_garden and print the common elements.
Find the difference between rose_garden and botanical_garden and print the elements that are only in rose_garden.
Find the symmetric difference between rose_garden and botanical_garden and print the elements unique to each set.
Create a set small_garden containing "red rose", "white rose". Check if small_garden is a subset of rose_garden and print the result.
Check if rose_garden is a superset of small_garden and print the result.
Use the len() function to find the number of elements in the rose_garden set. Print the result.
Use the discard() method to remove "pink rose" from the rose_garden set. Try to discard a non-existent element "blue rose" and observe what happens.
Use the clear() method to remove all elements from the rose_garden set. Print the set to confirm itβs empty.
Make a copy of the botanical_garden set using the copy() method. Add "lily" to the copy and print both sets to see the differences.
Create a frozen set immutable_garden with elements "orchid", "daisy", "red rose". Try to add or remove an element and observe what happens.
Iterate over the botanical_garden set and print each element.
Use set comprehension to create a set even_numbers containing even numbers from 1 to 10.
Given a list of flowers ["rose", "tulip", "rose", "daisy", "tulip"], use a set to remove duplicates and print the unique flowers.
Check if "sunflower" is in the botanical_garden set and print the result.
Use the intersection_update() method to update the botanical_garden set with only the elements found in rose_garden. Print the updated set.
Use the difference_update() method to remove all elements in small_garden from botanical_garden. Print the updated set.