diff --git a/README.md b/README.md index 02ec598..bf2dd21 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 **582** questions +:bar_chart:  There are currently **587** questions :books:  To learn more about DevOps check the resources in [DevOpsBit.com](https://devopsbit.com) @@ -2328,6 +2328,10 @@ Generally, every compiling process have a two steps. Explain Exception Handling and how to use it in Python
+
+What // is used for?
+
+
Write a program which will revert a string (e.g. pizza -> azzip)
@@ -2571,6 +2575,10 @@ def reverse_string(string): Explain what is GIL
+
+What is an iterator?
+
+
What is a generator? Why using generators?
@@ -2591,6 +2599,13 @@ def reverse_string(string): How to combine list of strings into one string with spaces between the strings
+
+Explain the following: + * zip() + * map() + * filter()
+
+
What empty return returns?
@@ -2664,6 +2679,16 @@ def sum(a, b): Implement Hash table in Python
+##### Tests + +
+What is your experience with writing tests in Python?
+
+ +
+Explain mocks
+
+ #### :star: Advanced @@ -2806,6 +2831,10 @@ a = f() Are you familiar with Dataclasses? Can you explain what are they used for?
+
+You wrote a class to represent a car. How would you compare two cars instances if two cars are equal if they have the same model and color?
+
+
Explain Context Manager