diff --git a/README.md b/README.md
index 6139bf4..b632c35 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
:information_source: This repository contains questions on various DevOps and SRE related topics
-:bar_chart: There are currently **711** questions
+:bar_chart: There are currently **714** questions
:books: To learn more about DevOps check the resources in [DevOpsBit.com](https://devopsbit.com)
@@ -114,7 +114,7 @@ Make sure to elaborate :)
-What is Reliability? How does it DevOps?
+What is Reliability? How does it fit DevOps?
@@ -1770,11 +1770,24 @@ There are a couple of ways to do that:
-Explain the fork() system call
+Explain the fork system call
+
+fork() is used for creating a new process.
-What are the differences between the following system calls?: exec(), fork(), vfork() and clone()?
+Explain the fork system call
+
+
+
+What are the differences between exec() and fork()?
+
+
+
+Why do we need the wait system call?
+
+wait() is used by a parent process to wait for the child process to finish execution.
+If wait is not used by a parent process then a child process might become a zombie process.
@@ -2524,7 +2537,7 @@ The average performance of the above algorithm is O(log n). Best performance can
* You shouldn't test your code before submitting it. This is what CI/CD exists for.
-##### Strings
+#### Strings
In any language you want, write a function to determine if a given string is a palindrome
@@ -2534,7 +2547,13 @@ The average performance of the above algorithm is O(log n). Best performance can
In any language you want, write a function to determine if two strings are Anagrams
-##### Time Complexity
+#### Integers
+
+
+In any language you would like, print the numbers from 1 to a given integer. For example for input: 5, the output is: 12345
+
+
+#### Time Complexity
Describe what would be the time complexity of the operations access
, search
insert
and remove
for the following data structures: