diff --git a/README.md b/README.md
index b8fa6d8..ee6df3c 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
:information_source: This repository contains interview questions on various DevOps and SRE related topics
-:bar_chart: There are currently **512** questions
+:bar_chart: There are currently **516** questions
***
🎉 Questions are now available at devopsbit.com 🎉
@@ -941,8 +941,7 @@ I consider this as a good blog post to read more about it: https://shapeshed.com
Hard link is the same file, using the same inode.
Soft link is a shortcut to another file, using a different inode.
-Soft links can be created between different file systems while.
-Hard link can be created only within the same file system.
+Soft links can be created between different file systems while hard link can be created only within the same file system.
@@ -1252,6 +1251,32 @@ While an A record points a domain name to an IP address, a PTR record does the o
How to print the shared libraries required by a certain program? What is it useful for?
+##### Users
+
+
+How do you create users? Where user information is stored?
+
+
+
+Do you know how to create a new user without using adduser/useradd command?
+
+
+
+How to add a new user to the system without providing him the ability to log-in into the system?
+
+ * adduser user_name --shell=/bin/false --no-create-home
+
+
+
+What can you do if you lost/forogt the root password?
+
+Re-install the OS IS NOT the right answer :)
+
+
+
+What is sudo? How do you set it up?
+
+
#### :star: Advanced
@@ -1678,6 +1703,10 @@ List
Explain "State Locking"
+
+What is the "Random" provider? What is it used for
+
+
## Docker
@@ -1842,6 +1871,10 @@ Kubernetes is especially good for scenarios when you no longer running small num
Explain what is a Pod
+
+True or False? A pod can manage multiple containers
+
+
How do you monitor your Kubernetes?
@@ -1854,32 +1887,6 @@ Kubernetes is especially good for scenarios when you no longer running small num
What is kubconfig? What do you use it for?
-##### Users
-
-
-How do you create users? Where user information is stored?
-
-
-
-Do you know how to create a new user without using adduser/useradd command?
-
-
-
-How to add a new user to the system without providing him the ability to log-in into the system?
-
- * adduser user_name --shell=/bin/false --no-create-home
-
-
-
-What can you do if you lost/forogt the root password?
-
-Re-install the OS IS NOT the right answer :)
-
-
-
-What is sudo? How do you set it up?
-
-
## Coding